summaryrefslogtreecommitdiff
path: root/sys/arch/mvme68k/stand/netboot
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1997-04-27 20:57:09 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1997-04-27 20:57:09 +0000
commit56a4230d7d90fb05982c3f285faf62ad514d429a (patch)
tree784f50865a80748c56258016bcdf69d47f3e35b1 /sys/arch/mvme68k/stand/netboot
parent5c1f80fa38ed55e3ed266e7cfbf19ea756f32b8d (diff)
COPY -> INSTALL_COPY and STRIP -> INSTALL_STRIP
This fixes namespace problems where STRIP is sometimes used as the name of the strip(1) to use and other times used as the flag to send install(1) when stripping (or not). COPY doesn't have this problem (yet) but was poorly named.
Diffstat (limited to 'sys/arch/mvme68k/stand/netboot')
-rw-r--r--sys/arch/mvme68k/stand/netboot/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvme68k/stand/netboot/Makefile b/sys/arch/mvme68k/stand/netboot/Makefile
index 8c6a70b860e..dcde93b7057 100644
--- a/sys/arch/mvme68k/stand/netboot/Makefile
+++ b/sys/arch/mvme68k/stand/netboot/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.6 1997/04/22 16:13:43 gvf Exp $
+# $OpenBSD: Makefile,v 1.7 1997/04/27 20:56:30 millert Exp $
RELOC=0x3F0000
SIZE?= size
@@ -32,7 +32,7 @@ netboot.bin: netboot
dd ibs=32 skip=1 if=netboot of=$@
install:
- install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
+ ${INSTALL} ${INSTALL_COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
netboot.bin ${DESTDIR}${MDEC_DIR}/netboot
.include <bsd.prog.mk>