summaryrefslogtreecommitdiffstats
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
commit4d8d0a9ae8394e9e93afe4b8b1f3df7ae0f993aa (patch)
tree41d30fda50cb278636e425a0d4ad61cbc4b45b13
parent595eb70a914014ca84c359dae779236337c2aacb (diff)
downloadlibgpod-tmz-4d8d0a9ae8394e9e93afe4b8b1f3df7ae0f993aa.tar.gz
libgpod-tmz-4d8d0a9ae8394e9e93afe4b8b1f3df7ae0f993aa.tar.xz
libgpod-tmz-4d8d0a9ae8394e9e93afe4b8b1f3df7ae0f993aa.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
-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/ $$//" \