[svn-commits] tilghman: branch 1.6.0 r123918 - in /branches/1.6.0: ./ build_tools/strip_nonapi

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Jun 19 11:27:49 CDT 2008


Author: tilghman
Date: Thu Jun 19 11:27:48 2008
New Revision: 123918

URL: http://svn.digium.com/view/asterisk?view=rev&rev=123918
Log:
Merged revisions 123913 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

................
r123913 | tilghman | 2008-06-19 11:26:50 -0500 (Thu, 19 Jun 2008) | 13 lines

Merged revisions 123909 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r123909 | tilghman | 2008-06-19 11:26:03 -0500 (Thu, 19 Jun 2008) | 5 lines

Only process 40 arguments (20 files) at once with xargs, because some older
shells may force xargs to separate on an odd boundary.
(Closes issue #12883)
Reported by Nik Soggia

........

................

Modified:
    branches/1.6.0/   (props changed)
    branches/1.6.0/build_tools/strip_nonapi

Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.0/build_tools/strip_nonapi
URL: http://svn.digium.com/view/asterisk/branches/1.6.0/build_tools/strip_nonapi?view=diff&rev=123918&r1=123917&r2=123918
==============================================================================
--- branches/1.6.0/build_tools/strip_nonapi (original)
+++ branches/1.6.0/build_tools/strip_nonapi Thu Jun 19 11:27:48 2008
@@ -30,7 +30,7 @@
 case "${OSARCH}" in
     linux-gnu|FreeBSD)
 	nm ${1} | ${GREP} -e "$TEXTSYM" | cut -d" " -f3 | ${FILTER} > striplist
-	sed -e "s/^/-N /" striplist | xargs ${STRIP} ${1}
+	sed -e "s/^/-N /" striplist | xargs -n 40 ${STRIP} ${1}
 	rm -f striplist
 	;;
     *)




More information about the svn-commits mailing list