summaryrefslogtreecommitdiffstats
path: root/share/zoneinfo
diff options
context:
space:
mode:
authorgpalmer <gpalmer@FreeBSD.org>1995-11-16 02:00:38 +0000
committergpalmer <gpalmer@FreeBSD.org>1995-11-16 02:00:38 +0000
commit4a111df1f212db09fe5fa26533057b10f8f11634 (patch)
tree4129385ddf6f9d81f831988d170134b77649b4da /share/zoneinfo
parented683028f0348dc9d1760818143b203126b94a2f (diff)
downloadFreeBSD-src-4a111df1f212db09fe5fa26533057b10f8f11634.zip
FreeBSD-src-4a111df1f212db09fe5fa26533057b10f8f11634.tar.gz
Change the handling of the leapseconds so that if LEAPSECONDS isn't
defined, it doesn't call zic with -L /dev/null, and instead doesn't use -L at all
Diffstat (limited to 'share/zoneinfo')
-rw-r--r--share/zoneinfo/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/share/zoneinfo/Makefile b/share/zoneinfo/Makefile
index 94ae5ea..3816baa 100644
--- a/share/zoneinfo/Makefile
+++ b/share/zoneinfo/Makefile
@@ -1,12 +1,12 @@
-# $Id: Makefile,v 1.6 1994/09/13 21:54:06 wollman Exp $
+# $Id: Makefile,v 1.7 1994/09/13 22:02:46 wollman Exp $
NOBIN=
CLEANFILES+= yearistype
.if defined(LEAPSECONDS)
-LEAPFILE= leapseconds
+LEAPFILE= -L leapseconds
.else
-LEAPFILE= /dev/null
+LEAPFILE=
.endif
TZFILES= africa antarctica asia australasia etcetera europe \
@@ -33,7 +33,7 @@ yearistype: yearistype.sh
afterinstall: yearistype
umask 022; cd ${.CURDIR}; \
zic -d ${DESTDIR}/usr/share/zoneinfo -p ${POSIXRULES} \
- -L ${LEAPFILE} -y ${YEARISTYPE} ${TZFILES}
+ ${LEAPFILE} -y ${YEARISTYPE} ${TZFILES}
chown -R bin.bin ${DESTDIR}/usr/share/zoneinfo/*
.include <bsd.prog.mk>
OpenPOWER on IntegriCloud