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 /sys/arch/i386/stand/biosboot | |
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 'sys/arch/i386/stand/biosboot')
-rw-r--r-- | sys/arch/i386/stand/biosboot/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/stand/biosboot/Makefile b/sys/arch/i386/stand/biosboot/Makefile index 5892f9824bf..31dc4d9f445 100644 --- a/sys/arch/i386/stand/biosboot/Makefile +++ b/sys/arch/i386/stand/biosboot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.5 1997/04/21 20:31:00 mickey Exp $ +# $OpenBSD: Makefile,v 1.6 1997/04/27 20:56:27 millert Exp $ PROG= biosboot SRCS= biosboot.S @@ -6,7 +6,7 @@ SRCS= biosboot.S CPPFLAGS+=-DSTART=$(START) -DBOOTMAGIC=$(BOOTMAGIC) -DBOOTREL=$(BOOTREL) LD=ld LDFLAGS=-nostdlib -Ttext 0 -N -x -Bstatic -STRIP= +INSTALL_STRIP= MAN= biosboot.8 all: machine-links |