aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-04-11 20:48:24 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-04-11 20:48:24 +0000
commitd0ea52ee041ca4d8d00cc5212d54328689b1a3c4 (patch)
treef910bd362c515fd91078d45a596cf6ce8ab6728c
parenta23a6d7819d2bc98d4e9d04d633928965c4e670a (diff)
downloadbusybox-w32-d0ea52ee041ca4d8d00cc5212d54328689b1a3c4.tar.gz
busybox-w32-d0ea52ee041ca4d8d00cc5212d54328689b1a3c4.tar.bz2
busybox-w32-d0ea52ee041ca4d8d00cc5212d54328689b1a3c4.zip
- pin the CFLAGS to make sure that we don't have to re-evaluate the
check_gcc over and over again. Makes make -j work for me..
-rw-r--r--Rules.mak2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rules.mak b/Rules.mak
index ada1735e8..406b97830 100644
--- a/Rules.mak
+++ b/Rules.mak
@@ -73,7 +73,7 @@ CFLAGS_EXTRA=$(subst ",, $(strip $(EXTRA_CFLAGS_OPTIONS)))
73#GCCINCDIR:=$(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp") 73#GCCINCDIR:=$(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp")
74 74
75WARNINGS=-Wall -Wstrict-prototypes -Wshadow 75WARNINGS=-Wall -Wstrict-prototypes -Wshadow
76CFLAGS+=-I$(top_builddir)/include -I$(top_srcdir)/include -I$(srcdir) 76CFLAGS:=-I$(top_builddir)/include -I$(top_srcdir)/include -I$(srcdir)
77 77
78ARFLAGS=cru 78ARFLAGS=cru
79 79