diff options
author | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2007-07-30 16:23:34 +0000 |
---|---|---|
committer | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2007-07-30 16:23:34 +0000 |
commit | e49fa6a86f08fbb55b635b90e03ba4374b05ffb1 (patch) | |
tree | e04e667ba6d91bb00cc3eb216107df406583592d /sys/arch/sgi/conf/Makefile.sgi | |
parent | f5b5c7c60835e50bbf241284fcf5ddd64b34e9d6 (diff) |
Shuffle the order in which we look for header files, when doing
kernel builds locally this doesnt change much but over NFS this
cuts about 12% of the build time on my setup (i386).
OK miod@, deraadt@.
Diffstat (limited to 'sys/arch/sgi/conf/Makefile.sgi')
-rw-r--r-- | sys/arch/sgi/conf/Makefile.sgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sgi/conf/Makefile.sgi b/sys/arch/sgi/conf/Makefile.sgi index 50176afea68..edf33468247 100644 --- a/sys/arch/sgi/conf/Makefile.sgi +++ b/sys/arch/sgi/conf/Makefile.sgi @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.sgi,v 1.15 2007/04/21 20:07:24 deraadt Exp $ +# $OpenBSD: Makefile.sgi,v 1.16 2007/07/30 16:23:33 thib Exp $ # Makefile for OpenBSD # @@ -45,7 +45,7 @@ S!= cd ../../../..; pwd SGI=$S/arch/sgi MIPS64= $S/arch/mips64 -INCLUDES= -I. -I$S/arch -I$S -nostdinc +INCLUDES= -I. -I$S -I$S/arch -nostdinc CPPFLAGS= ${INCLUDES} ${IDENT} -D_KERNEL -D__sgi__ CDIAGFLAGS= -Werror -Wall -Wmissing-prototypes -Wstrict-prototypes \ -Wno-uninitialized -Wno-format -Wno-main \ |