diff options
| author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2004-05-15 00:08:44 +0000 |
|---|---|---|
| committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2004-05-15 00:08:44 +0000 |
| commit | 08e6faa2784f33264b6bb9292c94cd18811371b1 (patch) | |
| tree | c8cebac101263e6c067e0a96176afce19c99835c | |
| parent | 0f126ea09f819a8f866d1c4ceeb57d83e5a03e9f (diff) | |
Notes
| -rw-r--r-- | tools/tools/tinderbox/tinderbox.pl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/tools/tinderbox/tinderbox.pl b/tools/tools/tinderbox/tinderbox.pl index d096d587c239..6433d078e984 100644 --- a/tools/tools/tinderbox/tinderbox.pl +++ b/tools/tools/tinderbox/tinderbox.pl @@ -539,12 +539,17 @@ MAIN:{ } } - # Build the world + # Build the world, or at least the kernel toolchain if ($cmds{'world'}) { logstage("building world (CFLAGS=$ENV{'CFLAGS'})"); cd("$sandbox/src"); make('buildworld') or error("failed to build world"); + } elsif ($cmds{'generic'} || $cmds{'lint'}) { + logstage("building kernel toolchain (CFLAGS=$ENV{'CFLAGS'})"); + cd("$sandbox/src"); + make('kernel-toolchain') + or error("failed to build kernel toolchain"); } # Build GENERIC if requested |
