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/mvmeppc/conf | |
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/mvmeppc/conf')
-rw-r--r-- | sys/arch/mvmeppc/conf/Makefile.mvmeppc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvmeppc/conf/Makefile.mvmeppc b/sys/arch/mvmeppc/conf/Makefile.mvmeppc index e2749713aee..e8278e3ca89 100644 --- a/sys/arch/mvmeppc/conf/Makefile.mvmeppc +++ b/sys/arch/mvmeppc/conf/Makefile.mvmeppc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.mvmeppc,v 1.22 2006/07/27 05:58:11 miod Exp $ +# $OpenBSD: Makefile.mvmeppc,v 1.23 2007/07/30 16:23:33 thib Exp $ # # Makefile for OpenBSD PowerPC # @@ -35,7 +35,7 @@ S!= cd ../../../..; pwd .endif MVMEPPC= $S/arch/mvmeppc -INCLUDES= -I. -I$S/arch -I$S -nostdinc +INCLUDES= -I. -I$S -I$S/arch -nostdinc CPPFLAGS= ${INCLUDES} ${IDENT} -D_KERNEL \ -D__mvmeppc__ CWARNFLAGS= -Werror -Wall -Wstrict-prototypes -Wmissing-prototypes \ |