diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-01-10 07:20:10 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-01-10 07:20:10 +0000 |
commit | 2baefddea3653f9b150e76238461ad922e7e6981 (patch) | |
tree | ae11f379f96ae44d4da4cbbffbfb009503ec57b3 | |
parent | d1a30f9ac26df67200218f8fe75e3ab84efe79c6 (diff) |
use ${INSTALL_STRIP} ok miod
-rw-r--r-- | sys/arch/mvme68k/stand/bootsd/Makefile | 4 | ||||
-rw-r--r-- | sys/arch/mvme88k/stand/bootsd/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/mvme68k/stand/bootsd/Makefile b/sys/arch/mvme68k/stand/bootsd/Makefile index 446433c9e4e..6c62f43e883 100644 --- a/sys/arch/mvme68k/stand/bootsd/Makefile +++ b/sys/arch/mvme68k/stand/bootsd/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 8.1 (Berkeley) 6/10/93 -# $OpenBSD: Makefile,v 1.14 2005/08/03 00:16:01 millert Exp $ +# $OpenBSD: Makefile,v 1.15 2006/01/10 07:20:08 deraadt Exp $ RELOC=0x6F0000 @@ -32,6 +32,6 @@ bootsd: ${OBJS} ${BUGCRT} ${LIBS} ${BUGCRT} ${OBJS} ${LIBS} `cc -print-libgcc-file-name` #${SRTOBJ} install: - install -c -m 555 -g bin -o bin ${BOOTS} ${DESTDIR}${MDEC_DIR} + install ${INSTALL_STRIP} -c -m 555 -g bin -o bin ${BOOTS} ${DESTDIR}${MDEC_DIR} .include <bsd.prog.mk> diff --git a/sys/arch/mvme88k/stand/bootsd/Makefile b/sys/arch/mvme88k/stand/bootsd/Makefile index 34000605cb5..8b26e2dc675 100644 --- a/sys/arch/mvme88k/stand/bootsd/Makefile +++ b/sys/arch/mvme88k/stand/bootsd/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 8.1 (Berkeley) 6/10/93 -# $OpenBSD: Makefile,v 1.11 2005/09/11 13:36:00 deraadt Exp $ +# $OpenBSD: Makefile,v 1.12 2006/01/10 07:20:09 deraadt Exp $ S= ${.CURDIR}/../../../.. @@ -31,6 +31,6 @@ bootsd: ${OBJS} ${STAGE2} ${LIBS} ${STAGE2} ${OBJS} ${LIBS} `cc -print-libgcc-file-name` install: - install -c -m 555 -g bin -o bin ${BOOTS} ${DESTDIR}${MDEC_DIR} + install ${INSTALL_STRIP} -c -m 555 -g bin -o bin ${BOOTS} ${DESTDIR}${MDEC_DIR} .include <bsd.prog.mk> |