summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTodd Zullinger <tmzullinger@users.sourceforge.net>2007-03-02 20:19:42 +0000
committerTodd Zullinger <tmzullinger@users.sourceforge.net>2007-03-02 20:19:42 +0000
commitd8f9ce4737e44f04136de3d7b5d9caed2e32a9b0 (patch)
treea536a6833e72b41f262429b27d6dc0ac80685075
parent56a6f268be0276976d6e140aa10467eb92aa646c (diff)
downloadlibgpod-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--ChangeLog6
-rw-r--r--bindings/Makefile.am2
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 8dc7a59..3c7c1ee 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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