aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1994-11-03 18:03:09 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1994-11-03 18:03:09 -0500
commit858072f0daf2fac2c60947d8b4eb62c6844f2eb6 (patch)
tree9e1eca2422ae1a6c553ed05d4bbd9d640d8cae9d /gcc
parentdd947ed946b8fea31877e67a0a0c57955ddcb4a7 (diff)
downloadgcc-858072f0daf2fac2c60947d8b4eb62c6844f2eb6.zip
gcc-858072f0daf2fac2c60947d8b4eb62c6844f2eb6.tar.gz
gcc-858072f0daf2fac2c60947d8b4eb62c6844f2eb6.tar.bz2
TOOL_INCLUDE_DIR is not C++-aware.
From-SVN: r8378
Diffstat (limited to 'gcc')
-rw-r--r--gcc/cccp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cccp.c b/gcc/cccp.c
index 5901f5f3..0ad85b4 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 },