Merge pull request #40717 from hedning/fix-inkscape-build
inkscape: disable parallelBuilding to avoid non-deterministic failure
This commit is contained in:
commit
18e1aea5c5
|
@ -51,7 +51,9 @@ stdenv.mkDerivation rec {
|
||||||
libvisio libcdr libexif potrace python2Env icu
|
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 = ''
|
preConfigure = ''
|
||||||
intltoolize -f
|
intltoolize -f
|
||||||
|
|
Loading…
Reference in New Issue