summaryrefslogtreecommitdiff
path: root/lib/librpcsvc/Makefile
diff options
context:
space:
mode:
authorJason Downs <downsj@cvs.openbsd.org>1996-12-08 15:22:36 +0000
committerJason Downs <downsj@cvs.openbsd.org>1996-12-08 15:22:36 +0000
commit4a7f6335f83e2f8234f181101043a8d369546b00 (patch)
tree39504325212fe4c666e815aa7ba2f0810e7d9a7b /lib/librpcsvc/Makefile
parent5275bb48665b4e748c48fc5a5a804ae0549f0e4a (diff)
install -> ${INSTALL}, -c -> ${COPY}
Diffstat (limited to 'lib/librpcsvc/Makefile')
-rw-r--r--lib/librpcsvc/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/librpcsvc/Makefile b/lib/librpcsvc/Makefile
index 6111df28faf..18c2bb6c19c 100644
--- a/lib/librpcsvc/Makefile
+++ b/lib/librpcsvc/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.3 1996/05/06 21:44:28 deraadt Exp $
+# $OpenBSD: Makefile,v 1.4 1996/12/08 15:22:31 downsj Exp $
RPCSRCS= bootparam_prot.x klm_prot.x mount.x nfs_prot.x\
@@ -16,18 +16,18 @@ all: ${HDRS}
beforedepend: ${HDRS}
includes: ${HDRS}
- install -d -o ${BINOWN} -g ${BINGRP} -m 755 \
+ ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
${DESTDIR}/usr/include/rpcsvc
@echo installing rpc .h and .x files
@for i in $(HDRS); do \
cmp -s $$i ${DESTDIR}/usr/include/rpcsvc/$$i || \
- { j="install -c -o ${BINOWN} -g ${BINGRP} -m 444 $$i \
+ { j="${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 $$i \
${DESTDIR}/usr/include/rpcsvc"; \
echo $$j; $$j; } \
done
@cd ${.CURDIR}; for i in $(RPCSRCS); do \
cmp -s $(.CURDIR)/$$i ${DESTDIR}/usr/include/rpcsvc/$$i || \
- { j="install -c -o ${BINOWN} -g ${BINGRP} -m 444 $$i \
+ { j="${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 $$i \
${DESTDIR}/usr/include/rpcsvc"; \
echo $$j; $$j; } \
done