diff options
author | Roland McGrath <roland@gcc.gnu.org> | 1995-04-03 04:08:34 +0000 |
---|---|---|
committer | Roland McGrath <roland@gcc.gnu.org> | 1995-04-03 04:08:34 +0000 |
commit | 684cfb6b2f2a62a8401724a551503eea572083c8 (patch) | |
tree | 1a7179c80f8d203e3ca90bafbe1abc5b79c3ee9a /gcc | |
parent | c27b5c621add2e8fb6b902db970f1567f98702e5 (diff) | |
download | gcc-684cfb6b2f2a62a8401724a551503eea572083c8.zip gcc-684cfb6b2f2a62a8401724a551503eea572083c8.tar.gz gcc-684cfb6b2f2a62a8401724a551503eea572083c8.tar.bz2 |
Include "config/linux.h" instead of "linux.h", to avoid recursion.
From-SVN: r9297
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/i386/linux.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/config/i386/linux.h b/gcc/config/i386/linux.h index 3238d44..e2a3783 100644 --- a/gcc/config/i386/linux.h +++ b/gcc/config/i386/linux.h @@ -26,7 +26,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ This gets us pretty close. */ #include "i386/i386.h" /* Base i386 target machine definitions */ #include "i386/att.h" /* Use the i386 AT&T assembler syntax */ -#include "linux.h" /* some common stuff */ +/* We cannot use "linux.h" here because that gets this file itself. */ +#include "config/linux.h" /* some common stuff */ #undef TARGET_VERSION #define TARGET_VERSION fprintf (stderr, " (i386 Linux/ELF)"); |