aboutsummaryrefslogtreecommitdiff
path: root/share/Makefile
diff options
context:
space:
mode:
authorRemko Lodder <remko@FreeBSD.org>2007-06-26 19:40:03 +0000
committerRemko Lodder <remko@FreeBSD.org>2007-06-26 19:40:03 +0000
commit4907faa6746911832774742c45838b352607e0ae (patch)
tree77201f03e4f7f856dd2235ce5bffd2e6d8b62f4b /share/Makefile
parent3f5b2c267b1a37f336c46dbc3d6eecb8b4c2759b (diff)
Make zoneinfo optional so that a filesystem upgrade/update does not overwrite
possibly installed thirdparte zoneinfo databases (from ports for example). PR: bin/104713 Submitted by: Mark Andrews <Mark_Andrews at isc dot org> (original patch rewritten by me to be more consistent with the new practise). Approved by: re (kensmith) Approved by: imp (mentor) Reviewed by: ru (some time ago already)
Notes
Notes: svn path=/head/; revision=171050
Diffstat (limited to 'share/Makefile')
-rw-r--r--share/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/share/Makefile b/share/Makefile
index 41c348dff18d..bd3f4396651c 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>