diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2006-03-28 21:38:26 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2006-03-28 21:38:26 +0000 |
commit | 46739930464464d6e476ad1753cbd3247fa88d15 (patch) | |
tree | 42c29401fda5d02db435bf32ce86017444d4108d /misc/zoneinfo | |
parent | - mark BROKEN (diff) |
define NO_PACKAGE when on the FreeBSD package building cluster.
Diffstat (limited to 'misc/zoneinfo')
-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 |