Remove `unpackCmd's not needed with GNU tar format auto-detection (r18492).

svn path=/nixpkgs/branches/stdenv-updates/; revision=18653
This commit is contained in:
Ludovic Courtès
2009-11-26 15:50:26 +00:00
parent 1ec11edce5
commit f1f286052e
4 changed files with 1 additions and 9 deletions

View File

@@ -9,8 +9,6 @@ stdenv.mkDerivation rec {
};
buildInputs = [m4 perl lzma];
unpackCmd = "lzma -d < $src | tar -x ";
doCheck = true;

View File

@@ -10,8 +10,6 @@ stdenv.mkDerivation rec {
buildNativeInputs = [ lzma m4 perl ];
unpackCmd = "lzma -d < $src | tar xv";
# Don't fixup "#! /bin/sh" in Libtool, otherwise it will use the
# "fixed" path in generated files!
dontPatchShebangs = true;

View File

@@ -10,8 +10,6 @@ stdenv.mkDerivation rec {
buildInputs = [ ncurses lzma ];
unpackCmd = "lzma -d < $src | tar xv";
# Disabled because we don't have zdiff in the stdenv bootstrap.
#doCheck = true;