diff options
author | Richard Stallman <rms@gnu.org> | 1993-01-13 09:06:31 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-01-13 09:06:31 +0000 |
commit | 9d9dadd25278d7b75a8b6d7b7f2eb8f79d9c970d (patch) | |
tree | 1a7e6360df566a98126698ea8c15d361e1dea522 /gcc | |
parent | 6fb26153854eff48184fffe8988adc516ab0c9d8 (diff) | |
download | gcc-9d9dadd25278d7b75a8b6d7b7f2eb8f79d9c970d.zip gcc-9d9dadd25278d7b75a8b6d7b7f2eb8f79d9c970d.tar.gz gcc-9d9dadd25278d7b75a8b6d7b7f2eb8f79d9c970d.tar.bz2 |
(include_defaults):
Put GCC_INCLUDE_DIR just before the system dirs whose files are fixed.
From-SVN: r3220
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cccp.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -540,7 +540,6 @@ static struct default_include { char *fname; int cplusplus; } include_defaults_a = { /* Pick up GNU C++ specific include files. */ { GPLUSPLUS_INCLUDE_DIR, 1}, - { GCC_INCLUDE_DIR, 0}, { TOOL_INCLUDE_DIR, 0}, #ifdef CROSS_COMPILE /* For cross-compilation, this dir name is generated @@ -548,6 +547,9 @@ static struct default_include { char *fname; int cplusplus; } include_defaults_a { CROSS_INCLUDE_DIR, 0 }, #else /* not CROSS_COMPILE */ { 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. */ #ifdef SYSTEM_INCLUDE_DIR { SYSTEM_INCLUDE_DIR, 0}, |