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/landisk | |
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/landisk')
-rw-r--r-- | sys/arch/landisk/conf/Makefile.landisk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/landisk/conf/Makefile.landisk b/sys/arch/landisk/conf/Makefile.landisk index b562b075f2d..dfaf4f0fc11 100644 --- a/sys/arch/landisk/conf/Makefile.landisk +++ b/sys/arch/landisk/conf/Makefile.landisk @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.landisk,v 1.3 2006/10/06 22:26:10 miod Exp $ +# $OpenBSD: Makefile.landisk,v 1.4 2007/07/30 16:23:33 thib Exp $ # # Makefile for OpenBSD/landisk # @@ -36,7 +36,7 @@ S!= cd ../../../..; pwd LANDISK= $S/arch/landisk SH= $S/arch/sh -INCLUDES= -I. -I$S/arch -I$S -nostdinc +INCLUDES= -I. -I$S -I$S/arch -nostdinc CPPFLAGS= ${INCLUDES} ${IDENT} -D_KERNEL -Dlandisk CWARNFLAGS= -Werror -Wall -Wstrict-prototypes -Wmissing-prototypes \ -Wno-uninitialized -Wno-format -Wno-main \ |