summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authordes <des@FreeBSD.org>2003-12-11 16:54:42 +0000
committerdes <des@FreeBSD.org>2003-12-11 16:54:42 +0000
commitcbd09f012223c928791862a507283b4b01aef2c4 (patch)
treea51e410fa888101e7b9f24dd998bba6a74a007ad /tools
parent155ac2ca9219b0099104b56562116a4082a5df2a (diff)
downloadFreeBSD-src-cbd09f012223c928791862a507283b4b01aef2c4.zip
FreeBSD-src-cbd09f012223c928791862a507283b4b01aef2c4.tar.gz
Don't pass -P option to make(1) as it confuses the error detection logic.
Diffstat (limited to 'tools')
-rw-r--r--tools/tools/tinderbox/tinderbox.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/tools/tinderbox/tinderbox.pl b/tools/tools/tinderbox/tinderbox.pl
index fd42b3b..f0aaf86 100644
--- a/tools/tools/tinderbox/tinderbox.pl
+++ b/tools/tools/tinderbox/tinderbox.pl
@@ -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";
OpenPOWER on IntegriCloud