Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/i386/stand Assign COPTS instead of adding to it, av...
details: https://anonhg.NetBSD.org/src/rev/e31fcf0cc337
branches: trunk
changeset: 533332:e31fcf0cc337
user: pooka <pooka%NetBSD.org@localhost>
date: Thu Jun 27 20:44:08 2002 +0000
description:
Assign COPTS instead of adding to it, avoids situation where -mi386
is mixed with -march=something_incompatible
suggested by thorpej
diffstat:
sys/arch/i386/stand/Makefile.booters | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (18 lines):
diff -r 666ba4317bec -r e31fcf0cc337 sys/arch/i386/stand/Makefile.booters
--- a/sys/arch/i386/stand/Makefile.booters Thu Jun 27 18:37:10 2002 +0000
+++ b/sys/arch/i386/stand/Makefile.booters Thu Jun 27 20:44:08 2002 +0000
@@ -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>
@@ -7,7 +7,7 @@
# Make sure we override any optimization options specified by the
# user.
-COPTS+= -Os -mcpu=i386
+COPTS= -Os -mcpu=i386
COPTS+= -ffreestanding
I386_STAND_DIR?= $S/arch/i386/stand
Home |
Main Index |
Thread Index |
Old Index