From 858072f0daf2fac2c60947d8b4eb62c6844f2eb6 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Thu, 3 Nov 1994 18:03:09 -0500 Subject: [PATCH] TOOL_INCLUDE_DIR is not C++-aware. From-SVN: r8378 --- gcc/cccp.c | 4 ++-- 1 file 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 }, -- 2.30.2