[asterisk-commits] tilghman: trunk r123913 - in /trunk: ./ build_tools/strip_nonapi
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Jun 19 11:26:51 CDT 2008
Author: tilghman
Date: Thu Jun 19 11:26:50 2008
New Revision: 123913
URL: http://svn.digium.com/view/asterisk?view=rev&rev=123913
Log:
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:
trunk/ (props changed)
trunk/build_tools/strip_nonapi
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/build_tools/strip_nonapi
URL: http://svn.digium.com/view/asterisk/trunk/build_tools/strip_nonapi?view=diff&rev=123913&r1=123912&r2=123913
==============================================================================
--- trunk/build_tools/strip_nonapi (original)
+++ trunk/build_tools/strip_nonapi Thu Jun 19 11:26:50 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 asterisk-commits
mailing list