Skip to content

Commit

Permalink
inkscape: disable parallelBuilding
Browse files Browse the repository at this point in the history
Try to avoid non-deterministic build failure.
  • Loading branch information
hedning committed May 18, 2018
1 parent c80f36d commit 05a6e94
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/applications/graphics/inkscape/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ stdenv.mkDerivation rec {
libvisio libcdr libexif potrace python2Env icu
];

enableParallelBuilding = true;
# To avoid non-deterministic build failure using make.
# When switching back to cmake turn parallel back on, see #40046.
enableParallelBuilding = false;

preConfigure = ''
intltoolize -f
Expand Down

0 comments on commit 05a6e94

Please sign in to comment.