diff options
author | peter <peter@FreeBSD.org> | 1996-12-15 01:25:54 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1996-12-15 01:25:54 +0000 |
commit | d24a34fa4e02173261828ae424d77054a1d8358a (patch) | |
tree | 7cdaef1ae96968234e60bdd552e4819f28d52d99 /sys/i386/boot/rawboot/Makefile | |
parent | 9f515f9fd2c9419cee559a9475c6712364af4044 (diff) | |
download | FreeBSD-src-d24a34fa4e02173261828ae424d77054a1d8358a.zip FreeBSD-src-d24a34fa4e02173261828ae424d77054a1d8358a.tar.gz |
Add missing -I so that probe_keyboard.c can find <i386/isa/kbdio.h>. :-(
(Why, oh why did this include file end up in isa/ rather than include/ ?)
Diffstat (limited to 'sys/i386/boot/rawboot/Makefile')
-rw-r--r-- | sys/i386/boot/rawboot/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/i386/boot/rawboot/Makefile b/sys/i386/boot/rawboot/Makefile index 1bc8f1c..1cdc010 100644 --- a/sys/i386/boot/rawboot/Makefile +++ b/sys/i386/boot/rawboot/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.2 1996/10/14 17:25:53 pst Exp $ +# $Id: Makefile,v 1.3 1996/10/15 16:26:05 bde Exp $ # PROG= boot @@ -16,6 +16,7 @@ CFLAGS= -O2 -malign-functions=0 -malign-jumps=0 -malign-loops=0 \ -I${.CURDIR}/../biosboot \ -DBOOTWAIT=${BOOTWAIT} -DTIMEOUT=${TIMEOUT} CFLAGS+= -DBOOTSEG=${BOOTSEG} -DBOOTSTACK=${BOOTSTACK} +CFLAGS+= -I${.CURDIR}/../../.. CFLAGS+= ${CWARNFLAGS} # Probe the keyboard and use the serial console if the keyboard isn't found. |