Assign COPTS instead of adding to it, avoids situation where -mi386
is mixed with -march=something_incompatible suggested by thorpej
This commit is contained in:
parent
3825b247fb
commit
c558b464ba
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: Makefile.booters,v 1.34 2002/05/31 18:26:26 thorpej Exp $
|
# $NetBSD: Makefile.booters,v 1.35 2002/06/27 20:44:08 pooka Exp $
|
||||||
|
|
||||||
.include <bsd.own.mk>
|
.include <bsd.own.mk>
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ BINMODE=444
|
||||||
|
|
||||||
# Make sure we override any optimization options specified by the
|
# Make sure we override any optimization options specified by the
|
||||||
# user.
|
# user.
|
||||||
COPTS+= -Os -mcpu=i386
|
COPTS= -Os -mcpu=i386
|
||||||
COPTS+= -ffreestanding
|
COPTS+= -ffreestanding
|
||||||
|
|
||||||
I386_STAND_DIR?= $S/arch/i386/stand
|
I386_STAND_DIR?= $S/arch/i386/stand
|
||||||
|
|
Loading…
Reference in New Issue