diff options
author | ru <ru@FreeBSD.org> | 2002-07-29 09:40:17 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2002-07-29 09:40:17 +0000 |
commit | a8adf98c8204f370670e5624e9e11b497b7c97e8 (patch) | |
tree | 5612f3de1042a85c3a65ed7da6124c3d8da3d097 /etc/isdn | |
parent | 3a86ff2aeb2a498c6d51422bae381540233c6946 (diff) | |
download | FreeBSD-src-a8adf98c8204f370670e5624e9e11b497b7c97e8.zip FreeBSD-src-a8adf98c8204f370670e5624e9e11b497b7c97e8.tar.gz |
Drop support for COPY, -c has been the default mode of install(1)
for a long time now.
Approved by: bde
Diffstat (limited to 'etc/isdn')
-rw-r--r-- | etc/isdn/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/isdn/Makefile b/etc/isdn/Makefile index f4d0222..74d36ea 100644 --- a/etc/isdn/Makefile +++ b/etc/isdn/Makefile @@ -18,10 +18,10 @@ I4BETCFILE= holidays.D \ install: for i in ${I4BETCPROG} ; do \ - ${INSTALL} ${COPY} -o root -g wheel -m 700 $$i ${DESTDIR}/etc/isdn ; \ + ${INSTALL} -o root -g wheel -m 700 $$i ${DESTDIR}/etc/isdn ; \ done ; \ for i in ${I4BETCFILE} ; do \ - ${INSTALL} ${COPY} -o root -g wheel -m 600 $$i ${DESTDIR}/etc/isdn ; \ + ${INSTALL} -o root -g wheel -m 600 $$i ${DESTDIR}/etc/isdn ; \ done # Suck in the ${COPY} definition. |