mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Don't pass -P option to make(1) as it confuses the error detection logic.
This commit is contained in:
parent
e8064dd1a8
commit
194c3cd492
1 changed files with 2 additions and 2 deletions
|
|
@ -207,7 +207,7 @@ sub spawn($@) {
|
|||
sub make($) {
|
||||
my $target = shift;
|
||||
|
||||
return spawn('/usr/bin/make', "-Pj$jobs", $target);
|
||||
return spawn('/usr/bin/make', "-j$jobs", $target);
|
||||
}
|
||||
|
||||
sub logstage($) {
|
||||
|
|
@ -464,7 +464,7 @@ MAIN:{
|
|||
if $branch ne 'CURRENT';
|
||||
$ENV{'CVSCMDARGS'} = "-D$date"
|
||||
if defined($date);
|
||||
$ENV{'WORLD_FLAGS'} = $ENV{'KERNEL_FLAGS'} = "-Pj$jobs";
|
||||
$ENV{'WORLD_FLAGS'} = $ENV{'KERNEL_FLAGS'} = "-j$jobs";
|
||||
if ($patch) {
|
||||
$ENV{'LOCAL_PATCHES'} = $patch;
|
||||
$ENV{'PATCH_FLAGS'} = "-fs";
|
||||
|
|
|
|||
Loading…
Reference in a new issue