From 9b92e03cdf8f27da34827489bd6ae629094fdce5 Mon Sep 17 00:00:00 2001 From: Nicholas Piper Date: Mon, 18 Dec 2006 11:37:50 +0000 Subject: 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 --- bindings/python/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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/ $$//" \ -- cgit