diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-04-27 20:57:09 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-04-27 20:57:09 +0000 |
commit | 56a4230d7d90fb05982c3f285faf62ad514d429a (patch) | |
tree | 784f50865a80748c56258016bcdf69d47f3e35b1 /sbin/fastboot | |
parent | 5c1f80fa38ed55e3ed266e7cfbf19ea756f32b8d (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 'sbin/fastboot')
-rw-r--r-- | sbin/fastboot/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/fastboot/Makefile b/sbin/fastboot/Makefile index 22577514bd0..49a6d8d677d 100644 --- a/sbin/fastboot/Makefile +++ b/sbin/fastboot/Makefile @@ -1,13 +1,13 @@ -# $OpenBSD: Makefile,v 1.4 1996/12/08 14:37:22 downsj Exp $ +# $OpenBSD: Makefile,v 1.5 1997/04/27 20:56:21 millert Exp $ # $NetBSD: Makefile,v 1.7 1995/03/18 14:55:27 cgd Exp $ MAN= fastboot.8 MLINKS= fastboot.8 fasthalt.8 beforeinstall: - ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${.CURDIR}/fastboot.sh ${DESTDIR}${BINDIR}/fastboot - ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${.CURDIR}/fasthalt.sh ${DESTDIR}${BINDIR}/fasthalt .include <bsd.prog.mk> |