From: Zac Medico Date: Wed, 31 Jan 2007 00:07:38 +0000 (-0000) Subject: Use find + xargs to avoid a potential 'Argument list too long' from bash. Thanks... X-Git-Tag: v2.2_pre1~1781 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=4dc080b9ebfd3d4439a6e6d9ff67ddc04a4931d1;p=portage.git Use find + xargs to avoid a potential 'Argument list too long' from bash. Thanks to solar for reporting. svn path=/main/trunk/; revision=5845 --- diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 3317996b4..aa3c1281f 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -454,11 +454,9 @@ unpack() { ;; esac done - local previous_dotglob=$(shopt -p dotglob) # Do not chmod '.' since it's probably ${WORKDIR} and PORTAGE_WORKDIR_MODE # should be preserved. - chmod -Rf a+rX,u+w,g-w,o-w * - eval ${previous_dotglob} + find . -mindepth 1 -print0 | ${XARGS} -0 chmod -f a+rX,u+w,g-w,o-w } strip_duplicate_slashes() {