From: Zac Medico Date: Wed, 31 Jan 2007 00:10:30 +0000 (-0000) Subject: Use find + xargs to avoid a potential 'Argument list too long' from bash. (trunk... X-Git-Tag: v2.1.2-r6~4 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0c8831a6b66ee55f31c4690d669e1a1c6f74458f;p=portage.git Use find + xargs to avoid a potential 'Argument list too long' from bash. (trunk r5844:5845) svn path=/main/branches/2.1.2/; revision=5846 --- 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() {