We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent ba3a792 commit 676b2efCopy full SHA for 676b2ef
pkgs/servers/dict/default.nix
@@ -13,7 +13,11 @@ stdenv.mkDerivation rec {
13
14
nativeBuildInputs = [ bison flex libtool which ];
15
16
- enableParallelBuilding = true;
+ # Makefile(.in) contains "clientparse.c clientparse.h: clientparse.y" which
17
+ # causes bison to run twice, and break the build when this happens in
18
+ # parallel. Test with "make -j clientparse.c clientparse.h". The error
19
+ # message may be "mv: cannot move 'y.tab.c' to 'clientparse.c'".
20
+ enableParallelBuilding = false;
21
22
patchPhase = "patch -p0 < ${./buildfix.diff}";
23
configureFlags = [
0 commit comments