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 /share/skel | |
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 'share/skel')
-rw-r--r-- | share/skel/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/skel/Makefile b/share/skel/Makefile index dbd3a00..aff9bb7 100644 --- a/share/skel/Makefile +++ b/share/skel/Makefile @@ -11,9 +11,9 @@ NOOBJ= noobj all clean cleandir depend lint tags: install: - ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${MODE1} ${FILES1} \ + ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${MODE1} ${FILES1} \ ${DESTDIR}${BINDIR}/skel - ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${MODE2} ${FILES2} \ + ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${MODE2} ${FILES2} \ ${DESTDIR}${BINDIR}/skel .include <bsd.prog.mk> |