Explicitly set TZ to GMT (including in the build environment)

This commit is contained in:
Dag-Erling Smørgrav 2003-02-18 10:14:13 +00:00
parent 69f034dae4
commit b61b86b86f

View File

@ -258,6 +258,8 @@ Report bugs to <des\@freebsd.org>.
MAIN:{
$ENV{'PATH'} = '';
$ENV{'TZ'} = "GMT";
tzset();
# Set defaults
$arch = `/usr/bin/uname -m`;
@ -384,6 +386,7 @@ MAIN:{
# Prepare environment for make(1);
cd("$sandbox/src");
%ENV = (
'TZ' => "GMT",
'PATH' => "/usr/bin:/usr/sbin:/bin:/sbin",
'__MAKE_CONF' => "/dev/null",