diff options
-rw-r--r-- | share/Makefile | 6 | ||||
-rw-r--r-- | share/mk/bsd.own.mk | 1 |
2 files changed, 6 insertions, 1 deletions
diff --git a/share/Makefile b/share/Makefile index 41c348d..bd3f439 100644 --- a/share/Makefile +++ b/share/Makefile @@ -25,7 +25,7 @@ SUBDIR= ${_colldef} \ tabset \ termcap \ ${_timedef} \ - zoneinfo + ${_zoneinfo} .if ${MK_LOCALES} != "no" _colldef = colldef @@ -68,4 +68,8 @@ _sendmail= sendmail _doc= doc .endif +.if ${MK_ZONEINFO} != "no" +_zoneinfo= zoneinfo +.endif + .include <bsd.subdir.mk> diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk index f6148cb..b3f431b 100644 --- a/share/mk/bsd.own.mk +++ b/share/mk/bsd.own.mk @@ -358,6 +358,7 @@ WITH_IDEA= TOOLCHAIN \ USB \ WPA_SUPPLICANT_EAPOL \ + ZONEINFO \ ZFS .if defined(WITH_${var}) && defined(WITHOUT_${var}) .error WITH_${var} and WITHOUT_${var} can't both be set. |