summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2003-10-10 20:44:49 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2003-10-10 20:44:49 +0000
commit3ce6706cfffb1ad0283b78a15e4a39629e83485a (patch)
tree7c9db4c8b85ea104ae73eae5451b41412dda4831 /tools
parent47850d0ae75d2499f30f97c686fe5de3c5154286 (diff)
downloadsrc-test2-3ce6706cfffb1ad0283b78a15e4a39629e83485a.tar.gz
src-test2-3ce6706cfffb1ad0283b78a15e4a39629e83485a.zip
Notes
Diffstat (limited to 'tools')
-rw-r--r--tools/tools/tinderbox/tinderbox.14
-rw-r--r--tools/tools/tinderbox/tinderbox.pl4
2 files changed, 4 insertions, 4 deletions
diff --git a/tools/tools/tinderbox/tinderbox.1 b/tools/tools/tinderbox/tinderbox.1
index a4a91a68e03b..19eb33659fe9 100644
--- a/tools/tools/tinderbox/tinderbox.1
+++ b/tools/tools/tinderbox/tinderbox.1
@@ -76,7 +76,7 @@ using the
option, when checking out sources.
As a special case, the value
.Dq today
-corresponds to midnight GMT the day the run starts.
+corresponds to midnight UTC the day the run starts.
The default is to use the top of whichever branch was specified.
.It Fl j Ar NUM , Fl -jobs Ns = Ns Ar NUM
The maximum number of paralell jobs, as specified to
@@ -218,7 +218,7 @@ The following variables are set for all builds:
.It PATH
.Va /usr/bin:/usr/sbin:/bin:/sbin
.It TZ
-.Va GMT
+.Va UTC
.It __MAKE_CONF
.Va /dev/null
.It CFLAGS
diff --git a/tools/tools/tinderbox/tinderbox.pl b/tools/tools/tinderbox/tinderbox.pl
index 9b1c38623d59..600a770c9744 100644
--- a/tools/tools/tinderbox/tinderbox.pl
+++ b/tools/tools/tinderbox/tinderbox.pl
@@ -269,7 +269,7 @@ Report bugs to <des\@freebsd.org>.
MAIN:{
# Clear environment and set timezone
%ENV = (
- 'TZ' => "GMT",
+ 'TZ' => "UTC",
'PATH' => "/usr/bin:/usr/sbin:/bin:/sbin",
);
tzset();
@@ -434,7 +434,7 @@ MAIN:{
# Prepare environment for make(1);
%ENV = (
- 'TZ' => "GMT",
+ 'TZ' => "UTC",
'PATH' => "/usr/bin:/usr/sbin:/bin:/sbin",
'__MAKE_CONF' => "/dev/null",