diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | bindings/Makefile.am | 2 |
2 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2007-03-02 Todd Zullinger <tmzullinger at users.sourceforge.net> + + * bindings/Makefile.am: only descend into the python subdir if + HAVE_PYTHON is set, this avoids some problems with the + Makefiles created by automake 1.7 + 2007-02-27 Todd Zullinger <tmzullinger at users.sourceforge.net> * INSTALL_CVS diff --git a/bindings/Makefile.am b/bindings/Makefile.am index c2ddf78..d09be56 100644 --- a/bindings/Makefile.am +++ b/bindings/Makefile.am @@ -1 +1,3 @@ +if HAVE_PYTHON SUBDIRS=python +endif |