summary refs log tree commit diff
path: root/pkgs/development/libraries/zlib
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-10-25 18:52:32 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-10-25 18:52:32 +0000
commit706b80c28223486d84ae1e809323fc553b271438 (patch)
treeb4c1e8d36ef40a8b4dd46ee6b25e3c35f03be0a5 /pkgs/development/libraries/zlib
parent0b1f1a522c655ef8b16242be975bf3314ed6dbe9 (diff)
I wrote bad my attempt at -static-libgcc. Retrying.
svn path=/nixpkgs/branches/stdenv-updates/; revision=30024
Diffstat (limited to 'pkgs/development/libraries/zlib')
-rw-r--r--pkgs/development/libraries/zlib/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/zlib/default.nix b/pkgs/development/libraries/zlib/default.nix
index 631cd50dd68a5..13157601e6f6e 100644
--- a/pkgs/development/libraries/zlib/default.nix
+++ b/pkgs/development/libraries/zlib/default.nix
@@ -19,7 +19,7 @@ stdenv.mkDerivation (rec {
 
   # As zlib takes part in the stdenv building, we don't want references
   # to the bootstrap-tools libgcc (as uses to happen on arm/mips)
-  NIX_LDFLAGS = "-static-libgcc";
+  NIX_CFLAGS_COMPILE = "-static-libgcc";
 
   crossAttrs = {
     dontStrip = if static then true else false;