From 0af1283e977ffbd72681461ab8e75735563a4421 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sun, 23 Dec 2012 20:17:53 +0100 Subject: [PATCH] Undoing more glibc unneeded changes --- pkgs/development/libraries/glibc/2.13/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/development/libraries/glibc/2.13/default.nix b/pkgs/development/libraries/glibc/2.13/default.nix index 59f8ca647e6..f80ed9372e6 100644 --- a/pkgs/development/libraries/glibc/2.13/default.nix +++ b/pkgs/development/libraries/glibc/2.13/default.nix @@ -5,7 +5,6 @@ , profilingLibraries ? false , gccCross ? null , debugSymbols ? false -, recentGcc ? true }: assert stdenv.gcc.gcc != null; @@ -20,7 +19,7 @@ in + stdenv.lib.optionalString debugSymbols "-debug"; inherit fetchurl stdenv kernelHeaders installLocales profilingLibraries - gccCross recentGcc; + gccCross; builder = ./builder.sh;