diff options
author | ru <ru@FreeBSD.org> | 2002-07-18 12:07:49 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2002-07-18 12:07:49 +0000 |
commit | cd7c90d38fcfaa98c9e2a069b70138ddf87e3955 (patch) | |
tree | 28835f40dbe3d76e3a6fda9aad6f0aecbec6f5b7 /share/skel | |
parent | 700fcd80fce2f08200f5778781eb49372f0dbb64 (diff) | |
download | FreeBSD-src-cd7c90d38fcfaa98c9e2a069b70138ddf87e3955.zip FreeBSD-src-cd7c90d38fcfaa98c9e2a069b70138ddf87e3955.tar.gz |
s/${INSTALL} -c/${INSTALL} ${COPY}/
Diffstat (limited to 'share/skel')
-rw-r--r-- | share/skel/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/share/skel/Makefile b/share/skel/Makefile index cee9708..dbd3a00 100644 --- a/share/skel/Makefile +++ b/share/skel/Makefile @@ -1,4 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 6/8/93 +# $FreeBSD$ FILES1= dot.cshrc dot.login dot.login_conf dot.mailrc dot.profile dot.shrc FILES2= dot.mail_aliases dot.rhosts @@ -10,9 +11,9 @@ NOOBJ= noobj all clean cleandir depend lint tags: install: - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${MODE1} ${FILES1} \ + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${MODE1} ${FILES1} \ ${DESTDIR}${BINDIR}/skel - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${MODE2} ${FILES2} \ + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${MODE2} ${FILES2} \ ${DESTDIR}${BINDIR}/skel .include <bsd.prog.mk> |