summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJason Downs <downsj@cvs.openbsd.org>1996-12-08 15:26:52 +0000
committerJason Downs <downsj@cvs.openbsd.org>1996-12-08 15:26:52 +0000
commit5b2752f6d3978dce11bb6695fcb155bab4ee0b37 (patch)
treede738333e358499d9c67be024d037705d0755e96 /include
parent4a7f6335f83e2f8234f181101043a8d369546b00 (diff)
cookie cookie COOKIE.. oh, sorry..
install -> ${INSTALL}, -c -> ${COPY}
Diffstat (limited to 'include')
-rw-r--r--include/Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/Makefile b/include/Makefile
index 13efc7a5c48..4273a48fda6 100644
--- a/include/Makefile
+++ b/include/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.31 1996/11/16 21:53:10 downsj Exp $
+# $OpenBSD: Makefile,v 1.32 1996/12/08 15:26:51 downsj Exp $
# $NetBSD: Makefile,v 1.59 1996/05/15 21:36:43 jtc Exp $
# @(#)Makefile 5.45.1.1 (Berkeley) 5/6/91
@@ -51,15 +51,15 @@ includes:
@echo installing ${FILES}
@-for i in ${FILES}; do \
cmp -s $$i ${DESTDIR}/usr/include/$$i || \
- install -c -m 444 $$i ${DESTDIR}/usr/include/$$i; \
+ ${INSTALL} ${COPY} -m 444 $$i ${DESTDIR}/usr/include/$$i; \
done
@echo installing ${DIRS}
@-for i in ${DIRS}; do \
- install -d -o ${BINOWN} -g ${BINGRP} -m 755 \
+ ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
${DESTDIR}/usr/include/$$i; \
(cd $$i; for j in *.[ih]; do \
cmp -s $$j ${DESTDIR}/usr/include/$$i/$$j || \
- install -c -m 444 $$j ${DESTDIR}/usr/include/$$i/$$j; \
+ ${INSTALL} ${COPY} -m 444 $$j ${DESTDIR}/usr/include/$$i/$$j; \
done); \
done
@echo installing ${LFILES}
@@ -86,7 +86,7 @@ copies:
@echo copies: ${LDIRS}
@-for i in ${LDIRS}; do \
rm -rf ${DESTDIR}/usr/include/$$i; \
- install -d -o ${BINOWN} -g ${BINGRP} -m 755 \
+ ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
${DESTDIR}/usr/include/$$i ; \
done
cd ../sys; \
@@ -94,7 +94,7 @@ copies:
`find ${LDIRS} -follow -type f -name '*.h' '!' -path \
'netiso/xebec/*' -print` ${DESTDIR}/usr/include
rm -rf ${DESTDIR}/usr/include/machine
- install -d -o ${BINOWN} -g ${BINGRP} -m 755 \
+ ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
${DESTDIR}/usr/include/machine
pax -rw -pa -s "|../sys/arch/${MACHINE}/include||" \
../sys/arch/${MACHINE}/include/*.h \
@@ -102,7 +102,7 @@ copies:
rm -rf ${DESTDIR}/usr/include/${MACHINE_ARCH}
if test ${MACHINE} != ${MACHINE_ARCH} -a \
-d ../sys/arch/${MACHINE_ARCH}/include; then \
- install -d -o ${BINOWN} -g ${BINGRP} -m 755 \
+ ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
${DESTDIR}/usr/include/${MACHINE_ARCH}; \
pax -rw -pa -s "|../sys/arch/${MACHINE_ARCH}/include||" \
../sys/arch/${MACHINE_ARCH}/include/*.h \