* Don't fixup "#! /bin/sh" in Autoconf/Automake/Libtool, otherwise they

will use the "fixed" path in generated files.

svn path=/nixpkgs/trunk/; revision=12485
This commit is contained in:
Eelco Dolstra
2008-08-04 14:37:51 +00:00
parent c62b4b2135
commit 0846ca2e5b
7 changed files with 43 additions and 3 deletions
@@ -2,9 +2,15 @@
stdenv.mkDerivation rec {
name = "libtool-1.5.26";
src = fetchurl {
url = "mirror://gnu/libtool/" + name + ".tar.gz";
url = "mirror://gnu/libtool/${name}.tar.gz";
sha256 = "029ggq5kri1gjn6nfqmgw4w920gyfzscjjxbsxxidal5zqsawd8w";
};
buildInputs = [m4 perl];
# Don't fixup "#! /bin/sh" in Libtool, otherwise it will use the
# "fixed" path in generated files!
dontPatchShebangs = true;
}