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:
Sergei Trofimovich 2021-10-22 09:41:20 +01:00
parent 992ecc024f
commit 5cae5261e4

View file

@ -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;