forked from mirrors/nixpkgs
dict: disable parallel building
This commit is contained in:
parent
ba3a792435
commit
676b2ef431
|
@ -13,7 +13,11 @@ stdenv.mkDerivation rec {
|
|||
|
||||
nativeBuildInputs = [ bison flex libtool which ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
# Makefile(.in) contains "clientparse.c clientparse.h: clientparse.y" which
|
||||
# causes bison to run twice, and break the build when this happens in
|
||||
# parallel. Test with "make -j clientparse.c clientparse.h". The error
|
||||
# message may be "mv: cannot move 'y.tab.c' to 'clientparse.c'".
|
||||
enableParallelBuilding = false;
|
||||
|
||||
patchPhase = "patch -p0 < ${./buildfix.diff}";
|
||||
configureFlags = [
|
||||
|
|
Loading…
Reference in a new issue