diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1996-12-08 15:00:09 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1996-12-08 15:00:09 +0000 |
commit | 7b12c8734d7e8c4ce180c40d12c579291d401a9e (patch) | |
tree | c4eaf5c2a6c77de1fe90742f5c9dd236a5e1a8d0 /usr.sbin/ypserv/ypinit/Makefile | |
parent | ea883c36316a8d2e4d3f02515b53427aa82ada27 (diff) |
install -> ${INSTALL}, -c -> ${COPY}
Diffstat (limited to 'usr.sbin/ypserv/ypinit/Makefile')
-rw-r--r-- | usr.sbin/ypserv/ypinit/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/ypserv/ypinit/Makefile b/usr.sbin/ypserv/ypinit/Makefile index 8efaf862642..a3eb8071299 100644 --- a/usr.sbin/ypserv/ypinit/Makefile +++ b/usr.sbin/ypserv/ypinit/Makefile @@ -1,13 +1,13 @@ -# $OpenBSD: Makefile,v 1.8 1996/05/30 09:53:15 deraadt Exp $ +# $OpenBSD: Makefile,v 1.9 1996/12/08 15:00:08 downsj Exp $ NOOBJ= noobj install: - install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${.CURDIR}/ypinit.sh ${DESTDIR}/usr/sbin/ypinit - install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${.CURDIR}/Makefile.yp ${DESTDIR}/var/yp/Makefile.yp - install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${.CURDIR}/Makefile.main ${DESTDIR}/var/yp/Makefile.main .include <bsd.prog.mk> |