Merge pull request #142834 from trofi/sequential-ion3

ion3: explicitly disable parallel builds
This commit is contained in:
Bobby Rong 2021-11-18 16:57:49 +08:00 committed by GitHub
commit 4ff9231d41
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,6 +13,11 @@ stdenv.mkDerivation rec {
buildFlags = [ "LUA_DIR=${lua}" "X11_PREFIX=/no-such-path" "PREFIX=\${out}" ];
# Build system is missing depends for autogenerated export headers:
# luac -o mod_tiling.lc mod_tiling.lua
# main.c:21:10: fatal error: exports.h: No such file or directory
enableParallelBuilding = false;
installFlags = [ "PREFIX=\${out}" ];
meta = with lib; {