diff options
author | ache <ache@FreeBSD.org> | 1994-10-07 05:36:01 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1994-10-07 05:36:01 +0000 |
commit | a9c792d591502c0763c0a8fca9b261054fe6d9bd (patch) | |
tree | 12eb99d2fe0659bb5781daea14401cf33db6f459 /sys/i386/boot/Makefile | |
parent | c782ecfd035866e9b2d0cebc95c73177ffd9978d (diff) | |
download | FreeBSD-src-a9c792d591502c0763c0a8fca9b261054fe6d9bd.zip FreeBSD-src-a9c792d591502c0763c0a8fca9b261054fe6d9bd.tar.gz |
Change first CFLAGS+= to CFLAGS= or we got really bad results
especially with -m486 from make.conf
Diffstat (limited to 'sys/i386/boot/Makefile')
-rw-r--r-- | sys/i386/boot/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/boot/Makefile b/sys/i386/boot/Makefile index 9ee417d..036f0d9 100644 --- a/sys/i386/boot/Makefile +++ b/sys/i386/boot/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.17 1994/10/02 05:18:23 rgrimes Exp $ +# $Id: Makefile,v 1.18 1994/10/06 09:40:58 rgrimes Exp $ # PROG= boot @@ -7,7 +7,7 @@ SRCS= start.S table.c boot2.S boot.c asm.S bios.S io.c disk.c sys.c BINDIR= /usr/mdec BINMODE= 444 -CFLAGS+= -O2 -DDO_BAD144 -DBOOTWAIT=${BOOTWAIT} +CFLAGS= -O2 -DDO_BAD144 -DBOOTWAIT=${BOOTWAIT} CFLAGS+= -DBOOTSEG=${BOOTSEG} -DBOOTSTACK=${BOOTSTACK} CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../.. CLEANFILES+= boot.nohdr boot.strip boot1 boot2 |