From e265b77befd7604cdfe0b83dbf4895a804cbc920 Mon Sep 17 00:00:00 2001 From: Gary Palmer Date: Thu, 16 Nov 1995 02:00:38 +0000 Subject: [PATCH] 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 --- share/zoneinfo/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/share/zoneinfo/Makefile b/share/zoneinfo/Makefile index 94ae5ea7f13..3816baa2f90 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