summaryrefslogtreecommitdiff
path: root/Rules.mak
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2009-07-05 16:50:27 -0400
committerMike Frysinger <vapier@gentoo.org>2009-07-05 20:27:16 -0400
commit651d0688d20de555564b393ea7fee79ea1a1611d (patch)
tree2631265e92909cca43af2f0ec51869d9e006d974 /Rules.mak
parent38265c7af552c1874b75c76818a082d2841c717b (diff)
use -isystem with gcc paths
Use -isystem to include gcc header paths rather than -I as these are system paths, not uClibc specific paths. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'Rules.mak')
-rw-r--r--Rules.mak2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rules.mak b/Rules.mak
index d831bd2fb..4a8dbc186 100644
--- a/Rules.mak
+++ b/Rules.mak
@@ -663,7 +663,7 @@ CFLAGS += -I$(KERNEL_HEADERS)
#CFLAGS += -iwithprefix include-fixed -iwithprefix include
CC_IPREFIX := $(shell $(CC) --print-file-name=include)
-CC_INC := -I$(dir $(CC_IPREFIX))include-fixed -I$(CC_IPREFIX)
+CC_INC := -isystem $(dir $(CC_IPREFIX))include-fixed -isystem $(CC_IPREFIX)
CFLAGS += $(CC_INC)
ifneq ($(DOASSERTS),y)