diff options
author | kris <kris@FreeBSD.org> | 2004-07-14 16:48:42 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-07-14 16:48:42 +0800 |
commit | ee02081f008b56963cb3ca670c551c1a90710cea (patch) | |
tree | 56fdd68489b5bdebdff6c4e84aab232ab9fa588a /Tools/portbuild | |
parent | bcbf525b85791604b3f450e9684065fb8b85c06d (diff) | |
download | freebsd-ports-gnome-ee02081f008b56963cb3ca670c551c1a90710cea.tar.gz freebsd-ports-gnome-ee02081f008b56963cb3ca670c551c1a90710cea.tar.zst freebsd-ports-gnome-ee02081f008b56963cb3ca670c551c1a90710cea.zip |
Hack around the sparc64 64-bit time_t test in 'installworld' since
we're installing (into a temporary staging area) on a non-sparc64
machine that does not have 64-bit time_t.
Diffstat (limited to 'Tools/portbuild')
-rwxr-xr-x | Tools/portbuild/scripts/makeworld | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tools/portbuild/scripts/makeworld b/Tools/portbuild/scripts/makeworld index 8bb7005a4962..7ad01f86d6af 100755 --- a/Tools/portbuild/scripts/makeworld +++ b/Tools/portbuild/scripts/makeworld @@ -68,6 +68,7 @@ mkdir /var/chroot/ echo "==> Starting make installworld" if [ "$client" = "0" ]; then + export NEWSPARC_TIMETYPE=__int64_t make installworld DESTDIR=/var/chroot error=$? if [ "$error" != "0" ]; then |