From e66964bfb3b93e6e4e98c78349e14f54e8b060f9 Mon Sep 17 00:00:00 2001 From: Wouter Wijngaards Date: Fri, 5 Oct 2012 07:06:11 +0000 Subject: [PATCH] - fix build of pythonmod in objdir (thanks Jakob Schlyter). git-svn-id: file:///svn/unbound/trunk@2773 be551aaa-1e26-0410-a405-d3ace91eadb9 --- Makefile.in | 2 +- doc/Changelog | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index b3bc27646..1f4f3fdb2 100644 --- a/Makefile.in +++ b/Makefile.in @@ -362,7 +362,7 @@ pythonmod.lo pythonmod.o: $(srcdir)/pythonmod/pythonmod.c config.h \ $(srcdir)/services/cache/dns.h $(srcdir)/services/mesh.h \ $(srcdir)/util/rbtree.h $(srcdir)/services/modstack.h -pythonmod/interface.h: $(srcdir)/pythonmod/interface.i $(srcdir)/config.h +pythonmod/interface.h: $(srcdir)/pythonmod/interface.i config.h @-if test ! -d pythonmod; then $(INSTALL) -d pythonmod; fi $(SWIG) $(CPPFLAGS) -o $@ -python $(srcdir)/pythonmod/interface.i diff --git a/doc/Changelog b/doc/Changelog index 8d1426356..9985274b1 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,6 @@ +5 October 2012: Wouter + - fix build of pythonmod in objdir (thanks Jakob Schlyter). + 3 October 2012: Wouter - fix text in unbound-anchor man page.