diff options
author | des <des@FreeBSD.org> | 2003-08-01 21:15:28 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2003-08-01 21:15:28 +0000 |
commit | 7971e5125a0b8d9b519fa3d23d77f439387a6917 (patch) | |
tree | 2d0f9e111185f91889bd9fe8d8e3d550bc1058fd /tools | |
parent | 9902e77aa2063d0a89ede6590b1e001a99e765d7 (diff) | |
download | FreeBSD-src-7971e5125a0b8d9b519fa3d23d77f439387a6917.zip FreeBSD-src-7971e5125a0b8d9b519fa3d23d77f439387a6917.tar.gz |
Re-add support for patches.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/tools/tinderbox/tbmaster.1 | 9 | ||||
-rw-r--r-- | tools/tools/tinderbox/tbmaster.pl | 1 |
2 files changed, 9 insertions, 1 deletions
diff --git a/tools/tools/tinderbox/tbmaster.1 b/tools/tools/tinderbox/tbmaster.1 index 8b91343..9e9dad4 100644 --- a/tools/tools/tinderbox/tbmaster.1 +++ b/tools/tools/tinderbox/tbmaster.1 @@ -27,7 +27,7 @@ .\" .\" $FreeBSD$ .\" -.Dd July 23, 2003 +.Dd August 1, 2003 .Dt TBMASTER 1 .Os .Sh NAME @@ -145,6 +145,13 @@ A list of additional options to pass to the .Xr tinderbox 1 script. No default value. +.It PATCH +.Pq Vt single +The file name (either absolute, or relative to the sandbox directory) +of the patch to apply if the +.Dq patch +command is specified. +No default value. .It PLATFORMS .Pq Vt multiple Which architectures and machines to build for. diff --git a/tools/tools/tinderbox/tbmaster.pl b/tools/tools/tinderbox/tbmaster.pl index 2823826..1f78667 100644 --- a/tools/tools/tinderbox/tbmaster.pl +++ b/tools/tools/tinderbox/tbmaster.pl @@ -52,6 +52,7 @@ my %CONFIG = ( 'LOGDIR' => '%%SANDBOX%%/logs', 'TARGETS' => [ 'update', 'world' ], 'OPTIONS' => [], + 'PATCH' => '', 'ENV' => [], 'SENDER' => '', 'RECIPIENT' => '', |