mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
Fixing the build of dev86 (it does not like gnumake 3.82)
svn path=/nixpkgs/branches/stdenv-updates/; revision=24940
This commit is contained in:
parent
0196bb720e
commit
b5f1600e49
@ -543,7 +543,12 @@ let
|
||||
|
||||
desktop_file_utils = callPackage ../tools/misc/desktop-file-utils { };
|
||||
|
||||
dev86 = callPackage ../development/compilers/dev86 { };
|
||||
dev86 = callPackage ../development/compilers/dev86 {
|
||||
/* Using GNU Make 3.82 leads to this:
|
||||
make[4]: *** No rule to make target `__ldivmod.o)'
|
||||
So use 3.81. */
|
||||
stdenv = overrideInStdenv stdenv [gnumake381];
|
||||
};
|
||||
|
||||
dnsmasq = callPackage ../tools/networking/dnsmasq {
|
||||
# TODO i18n can be installed as well, implement it?
|
||||
|
Loading…
Reference in New Issue
Block a user