From 9bddb8a172546a6cb55a553368f74b40e208438a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 20 Mar 2008 10:54:58 +0000 Subject: [PATCH] * stripDirs: nest the output. svn path=/nixpkgs/branches/stdenv-updates/; revision=11220 --- pkgs/stdenv/generic/setup.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/stdenv/generic/setup.sh b/pkgs/stdenv/generic/setup.sh index 0467f0df2ec..b7225771d7d 100644 --- a/pkgs/stdenv/generic/setup.sh +++ b/pkgs/stdenv/generic/setup.sh @@ -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 }