summaryrefslogtreecommitdiffstats
path: root/bindings
diff options
context:
space:
mode:
authorNicholas Piper <nicholas@users.sourceforge.net>2006-12-18 11:37:50 +0000
committerNicholas Piper <nicholas@users.sourceforge.net>2006-12-18 11:37:50 +0000
commit9b92e03cdf8f27da34827489bd6ae629094fdce5 (patch)
tree41d30fda50cb278636e425a0d4ad61cbc4b45b13 /bindings
parent9191e7b9658ffa44d119fde21aa232cc9a48ae9c (diff)
downloadlibgpod-9b92e03cdf8f27da34827489bd6ae629094fdce5.tar.gz
libgpod-9b92e03cdf8f27da34827489bd6ae629094fdce5.tar.xz
libgpod-9b92e03cdf8f27da34827489bd6ae629094fdce5.zip
Reverse tr and sort so that output of grep/awk is sorted before changing newlines to spaces - Todd Zullinger
git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1346 f01d2545-417e-4e96-918e-98f8d0dbbcb6
Diffstat (limited to 'bindings')
-rw-r--r--bindings/python/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/python/Makefile.am b/bindings/python/Makefile.am
index cb5ca8c..abce2d1 100644
--- a/bindings/python/Makefile.am
+++ b/bindings/python/Makefile.am
@@ -45,7 +45,7 @@ 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 }' | tr '\n' ' ' | sort -u`; \
+ 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/ $$//" \