diff options
author | bde <bde@FreeBSD.org> | 1996-11-29 12:54:10 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1996-11-29 12:54:10 +0000 |
commit | cd93045dc4051c70e1a2b19a4214040853d3f353 (patch) | |
tree | aaf7148ab8503f3847f3d143771a1a6754d32f2c /share/zoneinfo/Makefile | |
parent | 786512f23e67022d5f04f328ba0578f78958763a (diff) | |
download | FreeBSD-src-cd93045dc4051c70e1a2b19a4214040853d3f353.zip FreeBSD-src-cd93045dc4051c70e1a2b19a4214040853d3f353.tar.gz |
${COPY} -> -c. ${COPY} should never be used for installing sources since
it might be empty.
Diffstat (limited to 'share/zoneinfo/Makefile')
-rw-r--r-- | share/zoneinfo/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/zoneinfo/Makefile b/share/zoneinfo/Makefile index fcfc66b..0d62e98 100644 --- a/share/zoneinfo/Makefile +++ b/share/zoneinfo/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.10 1996/11/19 19:17:09 wollman Exp $ +# $Id: Makefile,v 1.11 1996/11/27 23:32:10 ache Exp $ NOBIN= CLEANFILES+= yearistype @@ -35,7 +35,7 @@ afterinstall: yearistype zic -d ${DESTDIR}/usr/share/zoneinfo -p ${POSIXRULES} \ ${LEAPFILE} -y ${YEARISTYPE} ${TZFILES} chown -R bin.bin ${DESTDIR}/usr/share/zoneinfo/* - ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/zone.tab \ + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/zone.tab \ ${DESTDIR}/usr/share/zoneinfo .include <bsd.prog.mk> |