From 0c8831a6b66ee55f31c4690d669e1a1c6f74458f Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Wed, 31 Jan 2007 00:10:30 +0000 Subject: 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 --- bin/ebuild.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'bin') 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() { -- cgit v1.2.3-1-g7c22