summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2007-12-03 17:55:41 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2007-12-03 17:55:41 +0000
commitff95bc3eea28f7e7c07fa640bce47ce4788ccfcf (patch)
tree521bc821378c586ff3a41c54c67fbde2cfc141d0 /pkgs
parent31034cb3d122b6a2315ec1e2082fc06acac96f3f (diff)
* Use gzip -d / bzip2 -d instead of gunzip / bunzip2.
svn path=/nixpkgs/branches/stdenv-updates/; revision=9839
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/stdenv/generic/setup.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/stdenv/generic/setup.sh b/pkgs/stdenv/generic/setup.sh
index 8d8be1ece8143..e91a9ce4dfd83 100644
--- a/pkgs/stdenv/generic/setup.sh
+++ b/pkgs/stdenv/generic/setup.sh
@@ -437,10 +437,10 @@ unpackFile() {
             tar xvf $file || fail
             ;;
         *.tar.gz | *.tgz | *.tar.Z)
-            gunzip < $file | tar xvf - || fail
+            gzip -d < $file | tar xvf - || fail
             ;;
         *.tar.bz2 | *.tbz2)
-            bunzip2 < $file | tar xvf - || fail
+            bzip2 -d < $file | tar xvf - || fail
             ;;
         *.zip)
             unzip $file || fail
@@ -562,10 +562,10 @@ patchW() {
         local uncompress=cat
         case $i in
             *.gz)
-                uncompress=gunzip
+                uncompress="gzip -d"
                 ;;
             *.bz2)
-                uncompress=bunzip2
+                uncompress="bzip2 -d"
                 ;;
         esac
         $uncompress < $i | patch $patchFlags || fail