summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2011-04-06 12:52:33 +0000
committerLudovic Courtès <ludo@gnu.org>2011-04-06 12:52:33 +0000
commit17fdaf6a7ea614157601b5e6e0e0cfb00044a4a5 (patch)
treee4ac6020915f1c9e51cc9533d03bd100bb369543 /pkgs/development
parent36ed7a8eb852277d60ef3e3a4b192586141acf54 (diff)
downloadnixlib-17fdaf6a7ea614157601b5e6e0e0cfb00044a4a5.tar
nixlib-17fdaf6a7ea614157601b5e6e0e0cfb00044a4a5.tar.gz
nixlib-17fdaf6a7ea614157601b5e6e0e0cfb00044a4a5.tar.bz2
nixlib-17fdaf6a7ea614157601b5e6e0e0cfb00044a4a5.tar.lz
nixlib-17fdaf6a7ea614157601b5e6e0e0cfb00044a4a5.tar.xz
nixlib-17fdaf6a7ea614157601b5e6e0e0cfb00044a4a5.tar.zst
nixlib-17fdaf6a7ea614157601b5e6e0e0cfb00044a4a5.zip
GCC 4.6: Add a version with debugging symbols.
svn path=/nixpkgs/trunk/; revision=26714
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/compilers/gcc-4.6/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/gcc-4.6/default.nix b/pkgs/development/compilers/gcc-4.6/default.nix
index a7233693a6bf..0d8f534e286d 100644
--- a/pkgs/development/compilers/gcc-4.6/default.nix
+++ b/pkgs/development/compilers/gcc-4.6/default.nix
@@ -132,7 +132,7 @@ in
 assert gtk != null -> (filter (x: x == null) xlibs) == [];
 
 stdenv.mkDerivation ({
-  name = "${name}-${version}" + crossNameAddon;
+  name = "${name}${if stripped then "" else "-debug"}-${version}" + crossNameAddon;
 
   builder = ./builder.sh;