mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
adns: explicitly disable parallel building
Fixing parallelism needs to get cross-header dependency right: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=51329 Let's disable parallelism on this package until upstream comes up with a fix.
This commit is contained in:
parent
992ecc024f
commit
5cae5261e4
|
@ -18,6 +18,10 @@ stdenv.mkDerivation rec {
|
|||
preConfigure =
|
||||
lib.optionalString stdenv.isDarwin "sed -i -e 's|-Wl,-soname=$(SHLIBSONAME)||' configure";
|
||||
|
||||
# Autogenerated headers miss interdependencies in Makefile, fail parallel build:
|
||||
# https://debbugs.gnu.org/cgi/bugreport.cgi?bug=51329
|
||||
enableParallelBuilding = false;
|
||||
|
||||
# https://www.mail-archive.com/nix-dev@cs.uu.nl/msg01347.html for details.
|
||||
doCheck = false;
|
||||
|
||||
|
|
Loading…
Reference in a new issue