mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
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 New Issue
Block a user