diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2000-10-19 17:14:02 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2000-10-19 17:14:02 +0000 |
commit | 86c7ccfd64750e9ff5a06cca2ebffb6f2cd35c6b (patch) | |
tree | 76996a579beb31a5d98f384bfabb3e573e2808ae /sys | |
parent | a0d6295d91d9de7fd14d2ab3cc6f439849f0db48 (diff) |
Pass SACFLAGS correctly so all files are compiled with -fpack-struct,
fixing the help hang and making machine [boot|diskinfo|memory] working
again.
Closes PR #1435. Found by me, fix by mickey and i; deraadt@ ok.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/i386/stand/boot/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/i386/stand/boot/Makefile b/sys/arch/i386/stand/boot/Makefile index 28b1734e956..d306ee0f6f3 100644 --- a/sys/arch/i386/stand/boot/Makefile +++ b/sys/arch/i386/stand/boot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.28 2000/06/08 00:56:07 mickey Exp $ +# $OpenBSD: Makefile,v 1.29 2000/10/19 17:14:01 fgsch Exp $ .include "${.CURDIR}/../Makefile.inc" @@ -33,14 +33,14 @@ ${PROG}: $(OBJS) $(DPADD) $(LD) $(LDFLAGS) -o $(PROG) $(OBJS) $(LDADD) @$(SIZE) $(PROG) -CPPFLAGS+=-DBOOTMAGIC=$(BOOTMAGIC) ${DEBUGFLAGS} -CFLAGS+=$(SACFLAGS) -#AFLAGS+=-Wa,-R -# AFLAGS+=-Wa,-a .else NOPROG= .endif .include <bsd.prog.mk> +CPPFLAGS+=-DBOOTMAGIC=$(BOOTMAGIC) ${DEBUGFLAGS} +CFLAGS+=$(SACFLAGS) +#AFLAGS+=-Wa,-R +# AFLAGS+=-Wa,-a |