diff options
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/pcvt/keycap/Makefile | 2 | ||||
-rw-r--r-- | usr.sbin/rpc.yppasswdd/Makefile | 2 | ||||
-rw-r--r-- | usr.sbin/ypserv/Makefile | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/pcvt/keycap/Makefile b/usr.sbin/pcvt/keycap/Makefile index c85dba4..02b06ee 100644 --- a/usr.sbin/pcvt/keycap/Makefile +++ b/usr.sbin/pcvt/keycap/Makefile @@ -18,7 +18,7 @@ CFLAGS+= -DKEYCAP_PATH=\"$(CAPPATH)\" #CLEANFILES+= keycap.0 man5/keycap.0 beforeinstall: - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \ + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \ ${.CURDIR}/${KEYCAPSRC} ${DESTDIR}${CAPPATH} .include <bsd.lib.mk> diff --git a/usr.sbin/rpc.yppasswdd/Makefile b/usr.sbin/rpc.yppasswdd/Makefile index 871a578..7d94b07 100644 --- a/usr.sbin/rpc.yppasswdd/Makefile +++ b/usr.sbin/rpc.yppasswdd/Makefile @@ -58,7 +58,7 @@ yppasswd_private_svc.c: yppasswd_private.x sed s/"static int _rpcsvcstate = _IDLE"/"extern int _rpcsvcstate"/g > ${.TARGET} afterinstall: - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${.CURDIR}/yppwupdate \ ${DESTDIR}/usr/libexec/yppwupdate diff --git a/usr.sbin/ypserv/Makefile b/usr.sbin/ypserv/Makefile index 30c3f3f..3c762c6 100644 --- a/usr.sbin/ypserv/Makefile +++ b/usr.sbin/ypserv/Makefile @@ -31,10 +31,10 @@ yp.h: yp.x ${RPCGEN} -h -o ${.TARGET} ${RPCDIR}/yp.x afterinstall: - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \ + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \ ${.CURDIR}/Makefile.yp \ ${DESTDIR}/var/yp/Makefile.dist - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 555 \ + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 555 \ ${.CURDIR}/ypinit.sh ${DESTDIR}${BINDIR}/ypinit @if [ ! -f ${DESTDIR}/var/yp/Makefile.dist ]; then \ ln -s ${DESTDIR}/var/yp/Makefile.dist \ |