Commit d0d3d409 authored by Christoffer Ackelman's avatar Christoffer Ackelman

Possible fix for parallel compilation on old debian.

parent 7cbe4284
......@@ -1460,7 +1460,7 @@ sub _build () # args: branch, subbranch, flavour, phase
if ($hw eq "x86" && $real_hw eq "x86_64") {
$ENV{"cross_compile"} = "-m32";
}
if ($branch eq "lib" || $branch eq "wbl" || ($branch eq "exe" && $flavour ne "src")) {
if ($branch eq "wbl" || (($branch eq "lib" || $branch eq "exe") && ($flavour eq "gtk" || $flavour eq "qt")) || ($branch eq "lib" && $flavour eq "src")) {
# All libraries and GUI-exe files can be compiled in parallel
system("make -j @_") && exit 1;
} else {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment