diff options
author | edwin <edwin@FreeBSD.org> | 2006-03-29 05:38:26 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2006-03-29 05:38:26 +0800 |
commit | 571f40c54daa80b2ef0179220ec335187b796fcc (patch) | |
tree | 450fcf7ccafda5a0b55c18213dd5cebb5deb479c /misc | |
parent | 9acec5dd2b73a057b36b9085ebe0bfc09410c7af (diff) | |
download | freebsd-ports-gnome-571f40c54daa80b2ef0179220ec335187b796fcc.tar.gz freebsd-ports-gnome-571f40c54daa80b2ef0179220ec335187b796fcc.tar.zst freebsd-ports-gnome-571f40c54daa80b2ef0179220ec335187b796fcc.zip |
define NO_PACKAGE when on the FreeBSD package building cluster.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/zoneinfo/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/misc/zoneinfo/Makefile b/misc/zoneinfo/Makefile index ccbc73f3d478..644e8305f46c 100644 --- a/misc/zoneinfo/Makefile +++ b/misc/zoneinfo/Makefile @@ -22,6 +22,12 @@ TZFILES= africa antarctica asia australasia etcetera europe \ factory northamerica southamerica systemv POSIXRULES= America/New_York +# Prevent packages if on the FreeBSD building cluster. This because +# it overwrite system files and directories. +.if defined(PACKAGE_BUILDING) +NO_PACKAGE= yes +.endif + .include <bsd.port.pre.mk> .if ${OSVERSION} < 500000 |