diff options
| author | nicholas <nicholas@f01d2545-417e-4e96-918e-98f8d0dbbcb6> | 2006-12-18 11:37:50 +0000 |
|---|---|---|
| committer | nicholas <nicholas@f01d2545-417e-4e96-918e-98f8d0dbbcb6> | 2006-12-18 11:37:50 +0000 |
| commit | 03a8cf5ef924013f9dc5d6d1547a4796032377fa (patch) | |
| tree | 41d30fda50cb278636e425a0d4ad61cbc4b45b13 /bindings | |
| parent | 30705b81b72efe6dc20302d95842474f97f6bb93 (diff) | |
| download | libgpod-03a8cf5ef924013f9dc5d6d1547a4796032377fa.tar.gz libgpod-03a8cf5ef924013f9dc5d6d1547a4796032377fa.tar.xz libgpod-03a8cf5ef924013f9dc5d6d1547a4796032377fa.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.am | 2 |
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/ $$//" \ |
