mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 05:31:22 +00:00
GNU Libtool: Use dontStrip' instead of the non-existent
dontNativeStrip'.
svn path=/nixpkgs/trunk/; revision=27571
This commit is contained in:
parent
b973f98afa
commit
3a8af0ddf7
|
@ -44,5 +44,5 @@ stdenv.mkDerivation (rec {
|
||||||
# Don't run the native `strip' when cross-compiling. This breaks at least
|
# Don't run the native `strip' when cross-compiling. This breaks at least
|
||||||
# with `.a' files for MinGW.
|
# with `.a' files for MinGW.
|
||||||
(if (stdenv ? cross)
|
(if (stdenv ? cross)
|
||||||
then { dontNativeStrip = true; }
|
then { dontStrip = true; }
|
||||||
else { }))
|
else { }))
|
||||||
|
|
Loading…
Reference in a new issue