Merge pull request #52428 from ivan/firejail-no-parallel-build

firejail: disable parallel building
This commit is contained in:
Michael Raskin 2018-12-17 08:56:04 +00:00 committed by GitHub
commit cc65a12098
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,7 +43,9 @@ stdenv.mkDerivation {
sed -E -e 's@^include (.*)(/firejail/.*.local)$@include /etc\2@g' -i $out/etc/firejail/*.profile
'';
enableParallelBuilding = true;
# At high parallelism, the build sometimes fails with:
# bash: src/fsec-optimize/fsec-optimize: No such file or directory
enableParallelBuilding = false;
meta = {
inherit (s) version;