diff options
| author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2003-12-11 16:54:42 +0000 |
|---|---|---|
| committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2003-12-11 16:54:42 +0000 |
| commit | 194c3cd4924b1073814cc7a3e29d356da3d45ebe (patch) | |
| tree | a51e410fa888101e7b9f24dd998bba6a74a007ad | |
| parent | e8064dd1a87865ed9fcb30d51a5067842c72d5ba (diff) | |
Notes
| -rw-r--r-- | tools/tools/tinderbox/tinderbox.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/tools/tinderbox/tinderbox.pl b/tools/tools/tinderbox/tinderbox.pl index fd42b3bdebdf5..f0aaf868768c5 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"; |
