1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

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;
};
gnumake = useFromStdenv "gnumake"
(import ../development/tools/build-managers/gnumake {
inherit fetchurl stdenv;
});
gnumake = import ../development/tools/build-managers/gnumake {
inherit fetchurl stdenv;
log2xmlSupport = getConfig [ "gnuMake" "log2xmlSupport" ] true;
};
gnumake380 = import ../development/tools/build-managers/gnumake-3.80 {
inherit fetchurl stdenv;