From 6697e35149613cce236acac3f5dfb1ff3fc67105 Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Tue, 12 Jun 2001 06:06:18 +0000 Subject: Move the -I../../../include or -I/usr/include to the last entry on the cc arguments. Otherwise ipfilter's bogus #include lines will compile reference /usr/include/netinet/ip_frag.h etc. --- sys/conf/Makefile.pc98 | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'sys/conf/Makefile.pc98') diff --git a/sys/conf/Makefile.pc98 b/sys/conf/Makefile.pc98 index 004e50f01c41..f194f8757754 100644 --- a/sys/conf/Makefile.pc98 +++ b/sys/conf/Makefile.pc98 @@ -44,12 +44,6 @@ COPTFLAGS?=-O -pipe COPTFLAGS+= ${_CPUCFLAGS} .endif INCLUDES= -nostdinc -I- ${INCLMAGIC} -I. -I$S -I$S/dev -# This hack is to allow kernel compiles to succeed on machines w/out srcdist -.if exists($S/../include) -INCLUDES+= -I$S/../include -.else -INCLUDES+= -I/usr/include -.endif # This hack lets us use the Intel ACPICA code without spamming a new # include path into 100+ source files. @@ -58,6 +52,13 @@ INCLUDES+= -I$S/contrib/dev/acpica # ... and the same for ipfilter INCLUDES+= -I$S/contrib/ipfilter +# This hack is to allow kernel compiles to succeed on machines w/out srcdist +.if exists($S/../include) +INCLUDES+= -I$S/../include +.else +INCLUDES+= -I/usr/include +.endif + COPTS= ${INCLUDES} ${IDENT} -D_KERNEL -include opt_global.h CFLAGS= ${COPTFLAGS} ${CWARNFLAGS} ${DEBUG} ${COPTS} -- cgit v1.2.3