summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2011-07-01 10:11:06 +0000
committerLudovic Courtès <ludo@gnu.org>2011-07-01 10:11:06 +0000
commit3a8af0ddf71b7f36c77ce6768161139eb8487e48 (patch)
tree81d1945cf314c6b653dd469e72ba5a59701d2003 /pkgs/development
parentb973f98afaea8f20afde84309f5ab47dc501584b (diff)
downloadnixlib-3a8af0ddf71b7f36c77ce6768161139eb8487e48.tar
nixlib-3a8af0ddf71b7f36c77ce6768161139eb8487e48.tar.gz
nixlib-3a8af0ddf71b7f36c77ce6768161139eb8487e48.tar.bz2
nixlib-3a8af0ddf71b7f36c77ce6768161139eb8487e48.tar.lz
nixlib-3a8af0ddf71b7f36c77ce6768161139eb8487e48.tar.xz
nixlib-3a8af0ddf71b7f36c77ce6768161139eb8487e48.tar.zst
nixlib-3a8af0ddf71b7f36c77ce6768161139eb8487e48.zip
GNU Libtool: Use `dontStrip' instead of the non-existent `dontNativeStrip'.
svn path=/nixpkgs/trunk/; revision=27571
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/misc/libtool/libtool2.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/tools/misc/libtool/libtool2.nix b/pkgs/development/tools/misc/libtool/libtool2.nix
index 5cdb8c9eef45..14848dc23528 100644
--- a/pkgs/development/tools/misc/libtool/libtool2.nix
+++ b/pkgs/development/tools/misc/libtool/libtool2.nix
@@ -44,5 +44,5 @@ stdenv.mkDerivation (rec {
 # Don't run the native `strip' when cross-compiling.  This breaks at least
 # with `.a' files for MinGW.
 (if (stdenv ? cross)
- then { dontNativeStrip = true; }
+ then { dontStrip = true; }
  else { }))