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/armish | |
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/armish')
-rw-r--r-- | sys/arch/armish/conf/Makefile.armish | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/armish/conf/Makefile.armish b/sys/arch/armish/conf/Makefile.armish index 584bbc28800..4c3c5203bcf 100644 --- a/sys/arch/armish/conf/Makefile.armish +++ b/sys/arch/armish/conf/Makefile.armish @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.armish,v 1.4 2006/07/27 05:58:11 miod Exp $ +# $OpenBSD: Makefile.armish,v 1.5 2007/07/30 16:23:33 thib Exp $ # $NetBSD: Makefile.i386,v 1.67 1996/05/11 16:12:11 mycroft Exp $ # Makefile for OpenBSD @@ -35,7 +35,7 @@ S!= cd ../../../..; pwd THISARM= $S/arch/armish ARM= $S/arch/arm -INCLUDES= -nostdinc -I. -I$S/arch -I$S +INCLUDES= -nostdinc -I. -I$S -I$S/arch CPPFLAGS= ${INCLUDES} ${IDENT} -D_KERNEL -D__armish__ CDIAGFLAGS= -Werror -Wall -Wstrict-prototypes -Wmissing-prototypes \ -Wno-uninitialized -Wno-format -Wno-main \ |