Author: shlevy
Date: Wed Apr  4 16:25:17 2012
New Revision: 33573
URL: https://nixos.org/websvn/nix/?rev=33573&sc=1

Log:
Don't do verbose unpacking, it's just log noise

Modified:
   nixpkgs/branches/stdenv-updates/pkgs/stdenv/generic/setup.sh

Modified: nixpkgs/branches/stdenv-updates/pkgs/stdenv/generic/setup.sh
==============================================================================
--- nixpkgs/branches/stdenv-updates/pkgs/stdenv/generic/setup.sh        Wed Apr 
 4 16:16:07 2012        (r33572)
+++ nixpkgs/branches/stdenv-updates/pkgs/stdenv/generic/setup.sh        Wed Apr 
 4 16:25:17 2012        (r33573)
@@ -432,15 +432,15 @@
     case "$curSrc" in
         *.tar.xz | *.tar.lzma)
             # Don't rely on tar knowing about .xz.
-            xz -d < $curSrc | tar xvf -
+            xz -d < $curSrc | tar xf -
             ;;
         *.tar | *.tar.* | *.tgz | *.tbz2)
             # GNU tar can automatically select the decompression method
             # (info "(tar) gzip").
-            tar xvf $curSrc
+            tar xf $curSrc
             ;;
         *.zip)
-            unzip $curSrc
+            unzip -qq $curSrc
             ;;
         *)
             if [ -d "$curSrc" ]; then
_______________________________________________
nix-commits mailing list
[email protected]
http://lists.science.uu.nl/mailman/listinfo/nix-commits

Reply via email to