summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-01-31 00:10:30 +0000
committerZac Medico <zmedico@gentoo.org>2007-01-31 00:10:30 +0000
commit0c8831a6b66ee55f31c4690d669e1a1c6f74458f (patch)
treed2ed3a4dc4c7ac989e009651738033edf975855c
parentFor bug #164363, shuffle the ip addresses returned from socket.getaddrinfo().... (diff)
downloadportage-0c8831a6b66ee55f31c4690d669e1a1c6f74458f.tar.gz
portage-0c8831a6b66ee55f31c4690d669e1a1c6f74458f.tar.bz2
portage-0c8831a6b66ee55f31c4690d669e1a1c6f74458f.zip
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
-rwxr-xr-xbin/ebuild.sh4
1 files changed, 1 insertions, 3 deletions
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() {