Commit 9d9dadd2 by Richard Stallman

(include_defaults):

Put GCC_INCLUDE_DIR just before the system dirs whose files are fixed.

From-SVN: r3220
parent 6fb26153
...@@ -540,7 +540,6 @@ static struct default_include { char *fname; int cplusplus; } include_defaults_a ...@@ -540,7 +540,6 @@ static struct default_include { char *fname; int cplusplus; } include_defaults_a
= { = {
/* Pick up GNU C++ specific include files. */ /* Pick up GNU C++ specific include files. */
{ GPLUSPLUS_INCLUDE_DIR, 1}, { GPLUSPLUS_INCLUDE_DIR, 1},
{ GCC_INCLUDE_DIR, 0},
{ TOOL_INCLUDE_DIR, 0}, { TOOL_INCLUDE_DIR, 0},
#ifdef CROSS_COMPILE #ifdef CROSS_COMPILE
/* For cross-compilation, this dir name is generated /* For cross-compilation, this dir name is generated
...@@ -548,6 +547,9 @@ static struct default_include { char *fname; int cplusplus; } include_defaults_a ...@@ -548,6 +547,9 @@ static struct default_include { char *fname; int cplusplus; } include_defaults_a
{ CROSS_INCLUDE_DIR, 0 }, { CROSS_INCLUDE_DIR, 0 },
#else /* not CROSS_COMPILE */ #else /* not CROSS_COMPILE */
{ LOCAL_INCLUDE_DIR, 0}, { LOCAL_INCLUDE_DIR, 0},
/* This is the dir for fixincludes. Put it just before
the files that we fix. */
{ GCC_INCLUDE_DIR, 0},
/* Some systems have an extra dir of include files. */ /* Some systems have an extra dir of include files. */
#ifdef SYSTEM_INCLUDE_DIR #ifdef SYSTEM_INCLUDE_DIR
{ SYSTEM_INCLUDE_DIR, 0}, { SYSTEM_INCLUDE_DIR, 0},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment