mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
inkscape: disable parallelBuilding
Try to avoid non-deterministic build failure.
This commit is contained in:
parent
c80f36df99
commit
05a6e94f34
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue