dict: disable parallel building

This commit is contained in:
Orivej Desh 2017-11-27 14:56:33 +00:00
parent ba3a792435
commit 676b2ef431

View file

@ -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 = [