From 5fb49018862dc3107ac2cc6ea0b4634dddfbc40b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Thu, 23 Feb 2012 00:47:17 +0000 Subject: [PATCH] GCC 4.6: Really disable stripping when `stripped' is false. svn path=/nixpkgs/branches/stdenv-updates/; revision=32501 --- pkgs/development/compilers/gcc/4.6/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/gcc/4.6/default.nix b/pkgs/development/compilers/gcc/4.6/default.nix index bd9ad426f455..30b6476c5534 100644 --- a/pkgs/development/compilers/gcc/4.6/default.nix +++ b/pkgs/development/compilers/gcc/4.6/default.nix @@ -412,7 +412,7 @@ stdenv.mkDerivation ({ installTargets = "install-gcc install-target-libgcc"; } -// optionalAttrs (!stripped) { dontStrip = true; } +// optionalAttrs (!stripped) { dontStrip = true; NIX_STRIP_DEBUG = 0; } // optionalAttrs langVhdl rec { name = "ghdl-0.29";