summary refs log tree commit diff
path: root/pkgs/development/tools/misc/automake
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2008-08-04 14:37:51 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2008-08-04 14:37:51 +0000
commit0846ca2e5b6cb7883ce972cec7f630b421bcc759 (patch)
treeea85a52237702a294e4a21107c7df4391be34b7c /pkgs/development/tools/misc/automake
parentc62b4b2135baa401968665344bb9f231778c89dc (diff)
downloadnixpkgs-0846ca2e5b6cb7883ce972cec7f630b421bcc759.tar
nixpkgs-0846ca2e5b6cb7883ce972cec7f630b421bcc759.tar.gz
nixpkgs-0846ca2e5b6cb7883ce972cec7f630b421bcc759.tar.bz2
nixpkgs-0846ca2e5b6cb7883ce972cec7f630b421bcc759.tar.lz
nixpkgs-0846ca2e5b6cb7883ce972cec7f630b421bcc759.tar.xz
nixpkgs-0846ca2e5b6cb7883ce972cec7f630b421bcc759.tar.zst
nixpkgs-0846ca2e5b6cb7883ce972cec7f630b421bcc759.zip
* 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
Diffstat (limited to 'pkgs/development/tools/misc/automake')
-rw-r--r--pkgs/development/tools/misc/automake/automake-1.10.x.nix4
-rw-r--r--pkgs/development/tools/misc/automake/automake-1.7.x.nix4
-rw-r--r--pkgs/development/tools/misc/automake/automake-1.9.x.nix4
3 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/development/tools/misc/automake/automake-1.10.x.nix b/pkgs/development/tools/misc/automake/automake-1.10.x.nix
index accc587a480..385f614a50f 100644
--- a/pkgs/development/tools/misc/automake/automake-1.10.x.nix
+++ b/pkgs/development/tools/misc/automake/automake-1.10.x.nix
@@ -17,6 +17,10 @@ stdenv.mkDerivation rec {
 
   doCheck = true;
 
+  # Don't fixup "#! /bin/sh" in Libtool, otherwise it will use the
+  # "fixed" path in generated files!
+  dontPatchShebangs = true;
+  
   meta = {
     homepage = http://www.gnu.org/software/automake/;
     description = "GNU Automake, a GNU standard-compliant makefile generator";
diff --git a/pkgs/development/tools/misc/automake/automake-1.7.x.nix b/pkgs/development/tools/misc/automake/automake-1.7.x.nix
index 6a0f466cf37..5c2a720aaab 100644
--- a/pkgs/development/tools/misc/automake/automake-1.7.x.nix
+++ b/pkgs/development/tools/misc/automake/automake-1.7.x.nix
@@ -9,4 +9,8 @@ stdenv.mkDerivation {
     md5 = "571fd0b0598eb2a27dcf68adcfddfacb";
   };
   buildInputs = [perl autoconf];
+
+  # Don't fixup "#! /bin/sh" in Libtool, otherwise it will use the
+  # "fixed" path in generated files!
+  dontPatchShebangs = true;
 }
diff --git a/pkgs/development/tools/misc/automake/automake-1.9.x.nix b/pkgs/development/tools/misc/automake/automake-1.9.x.nix
index 745964accaf..ccc2c6baac6 100644
--- a/pkgs/development/tools/misc/automake/automake-1.9.x.nix
+++ b/pkgs/development/tools/misc/automake/automake-1.9.x.nix
@@ -9,4 +9,8 @@ stdenv.mkDerivation {
     md5 = "c60f77a42f103606981d456f1615f5b4";
   };
   buildInputs = [perl autoconf];
+
+  # Don't fixup "#! /bin/sh" in Libtool, otherwise it will use the
+  # "fixed" path in generated files!
+  dontPatchShebangs = true;
 }