summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2012-01-26 17:00:05 +0100
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2012-01-26 17:00:05 +0100
commit80576869e1edf4f8dfb45eadf70a802938587f34 (patch)
treefa159a05ab711315bed8db63adce87e1e5fd5748
parent775e77bf2c31307f1a1397573b7ea2f10f85f74a (diff)
buildsys: use single slash version of -print-whatever
The double slash variants are not documented (doc bug?) so better use the single slash variants like we usually do. Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
-rw-r--r--Rules.mak2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rules.mak b/Rules.mak
index ec8f544df..9c01db8ec 100644
--- a/Rules.mak
+++ b/Rules.mak
@@ -766,7 +766,7 @@ CFLAGS += -I$(top_srcdir)libc/sysdeps/linux/common
CFLAGS += -I$(KERNEL_HEADERS)
#CFLAGS += -iwithprefix include-fixed -iwithprefix include
-$(eval $(call cache-output-var,CC_IPREFIX,$(CC) --print-file-name=include))
+$(eval $(call cache-output-var,CC_IPREFIX,$(CC) -print-file-name=include))
CC_INC := -isystem $(dir $(CC_IPREFIX))include-fixed -isystem $(CC_IPREFIX)
CFLAGS += $(CC_INC)