Make GNU Make's nix-log2xml' support optional via getConfig'.

svn path=/nixpkgs/trunk/; revision=12335
This commit is contained in:
Ludovic Courtès 2008-07-10 15:19:28 +00:00
parent cbc9ca34b5
commit 942199655b

View File

@ -2102,10 +2102,10 @@ let pkgs = rec {
inherit fetchurl stdenv; inherit fetchurl stdenv;
}; };
gnumake = useFromStdenv "gnumake" gnumake = import ../development/tools/build-managers/gnumake {
(import ../development/tools/build-managers/gnumake { inherit fetchurl stdenv;
inherit fetchurl stdenv; log2xmlSupport = getConfig [ "gnuMake" "log2xmlSupport" ] true;
}); };
gnumake380 = import ../development/tools/build-managers/gnumake-3.80 { gnumake380 = import ../development/tools/build-managers/gnumake-3.80 {
inherit fetchurl stdenv; inherit fetchurl stdenv;