Commit 9da92c00 authored by Christoffer Ackelman's avatar Christoffer Ackelman

Fixed parallel compile on old debian.

parent d0d3d409
......@@ -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 "wbl" || (($branch eq "lib" || $branch eq "exe") && ($flavour eq "gtk" || $flavour eq "qt")) || ($branch eq "lib" && $flavour eq "src")) {
if (($branch eq "lib" && $subbranch ne "dtt") || $branch eq "wbl") {
# 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