* stripDirs: nest the output.

svn path=/nixpkgs/branches/stdenv-updates/; revision=11220
This commit is contained in:
Eelco Dolstra 2008-03-20 10:54:58 +00:00
parent c0c199dbc7
commit 9bddb8a172

View File

@ -232,8 +232,9 @@ stripDirs() {
dirs=${dirsNew}
if test -n "${dirs}"; then
echo "stripping (with flags $stripFlags) in $dirs"
header "stripping (with flags $stripFlags) in $dirs"
find $dirs -type f -print0 | xargs -0 strip $stripFlags || true
stopNest
fi
}