diff options
author | Todd Zullinger <tmzullinger@users.sourceforge.net> | 2007-03-02 20:19:42 +0000 |
---|---|---|
committer | Todd Zullinger <tmzullinger@users.sourceforge.net> | 2007-03-02 20:19:42 +0000 |
commit | d8f9ce4737e44f04136de3d7b5d9caed2e32a9b0 (patch) | |
tree | a536a6833e72b41f262429b27d6dc0ac80685075 | |
parent | 56a6f268be0276976d6e140aa10467eb92aa646c (diff) | |
download | libgpod-d8f9ce4737e44f04136de3d7b5d9caed2e32a9b0.tar.gz libgpod-d8f9ce4737e44f04136de3d7b5d9caed2e32a9b0.tar.xz libgpod-d8f9ce4737e44f04136de3d7b5d9caed2e32a9b0.zip |
only descend into the python subdir if HAVE_PYTHON is set, this avoids some problems with the Makefiles created by automake 1.7
git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1402 f01d2545-417e-4e96-918e-98f8d0dbbcb6
-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 |