summaryrefslogtreecommitdiff
path: root/gcc/cccp.c
diff options
context:
space:
mode:
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1994-11-03 23:03:09 +0000
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1994-11-03 23:03:09 +0000
commit48d9b50836bd6736f1c0ec9e75315b10cf67c5d5 (patch)
tree9e1eca2422ae1a6c553ed05d4bbd9d640d8cae9d /gcc/cccp.c
parent80e9c49d039f8e4d6e983d9ec9d66f8b5271f6ec (diff)
downloadgcc-48d9b50836bd6736f1c0ec9e75315b10cf67c5d5.tar.gz
TOOL_INCLUDE_DIR is not C++-aware.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@8378 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cccp.c')
-rw-r--r--gcc/cccp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cccp.c b/gcc/cccp.c
index 5901f5f362f..0ad85b42803 100644
--- a/gcc/cccp.c
+++ b/gcc/cccp.c
@@ -604,14 +604,14 @@ static struct default_include {
automatically in Makefile.in. */
{ CROSS_INCLUDE_DIR, 0, 0 },
/* This is another place that the target system's headers might be. */
- { TOOL_INCLUDE_DIR, 0, 1 },
+ { TOOL_INCLUDE_DIR, 0, 0 },
#else /* not CROSS_COMPILE */
/* This should be /usr/local/include and should come before
the fixincludes-fixed header files. */
{ LOCAL_INCLUDE_DIR, 0, 1 },
/* This is here ahead of GCC_INCLUDE_DIR because assert.h goes here.
Likewise, behind LOCAL_INCLUDE_DIR, where glibc puts its assert.h. */
- { TOOL_INCLUDE_DIR, 0, 1 },
+ { TOOL_INCLUDE_DIR, 0, 0 },
/* This is the dir for fixincludes. Put it just before
the files that we fix. */
{ GCC_INCLUDE_DIR, 0, 0 },