summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJorg Schuler <jcsjcs@users.sourceforge.net>2007-01-10 13:18:53 +0000
committerJorg Schuler <jcsjcs@users.sourceforge.net>2007-01-10 13:18:53 +0000
commit88f25cb5ac0cacdd7b22f8db2b6b6b29b3bfe9d7 (patch)
treeb9e2383cd89e864223a8445538c73883fbff9505
parent65d778369f9c1377bd37de140d32acc82789e71a (diff)
downloadlibgpod-88f25cb5ac0cacdd7b22f8db2b6b6b29b3bfe9d7.tar.gz
libgpod-88f25cb5ac0cacdd7b22f8db2b6b6b29b3bfe9d7.tar.xz
libgpod-88f25cb5ac0cacdd7b22f8db2b6b6b29b3bfe9d7.zip
* bindings/python/Makefile.am: correct 'make dist' failure (patch
by Todd Zullinger) git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1354 f01d2545-417e-4e96-918e-98f8d0dbbcb6
-rw-r--r--ChangeLog5
-rw-r--r--bindings/python/Makefile.am16
2 files changed, 13 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 0f60dc5..efa282c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-01-10 Jorg Schuler <jcsjcs at users.sourceforge.net>
+
+ * bindings/python/Makefile.am: correct 'make dist' failure (patch
+ by Todd Zullinger)
+
2007-01-09 Jorg Schuler <jcsjcs at users.sourceforge.net>
* src/pixmaps.c
diff --git a/bindings/python/Makefile.am b/bindings/python/Makefile.am
index 9373edc..b5d23f4 100644
--- a/bindings/python/Makefile.am
+++ b/bindings/python/Makefile.am
@@ -18,6 +18,14 @@ DISTCLEANFILES = \
README \
gpod.i
+README: README.in gpod.i
+ WRAPPER_LIST=`grep 'PyObject\* sw_[^_].*;' gpod.i | awk -F "[ (]" '{ print $$2 }' | sort -u | tr '\n' ' '`; \
+ sed \
+ -e "s/@WRAPPER_LIST@/$${WRAPPER_LIST}/" \
+ -e "/^sw_/ s/ $$//" \
+ -e "/^sw_/ s/ /\n/g" \
+ $< > $@
+
if HAVE_PYTHON
MODULE_CFLAGS = `$(PKG_CONFIG) --cflags $(top_builddir)/libgpod-1.0.pc` $(PYTHON_INCLUDES)
MODULE_LIBS = `$(PKG_CONFIG) --libs $(top_builddir)/libgpod-1.0.pc` -L$(top_srcdir)/src/.libs
@@ -45,14 +53,6 @@ install-pythonDATA: $(python_DATA)
uninstall-pythonDATA: $(python_DATA)
rm -rf $(DESTDIR)$(pyexecdir)/gpod
-README: README.in gpod.i
- WRAPPER_LIST=`grep 'PyObject\* sw_[^_].*;' gpod.i | awk -F "[ (]" '{ print $$2 }' | sort -u | tr '\n' ' '`; \
- sed \
- -e "s/@WRAPPER_LIST@/$${WRAPPER_LIST}/" \
- -e "/^sw_/ s/ $$//" \
- -e "/^sw_/ s/ /\n/g" \
- $< > $@
-
test:
cd tests && python tests.py
endif