Include "config/linux.h" instead of "linux.h", to avoid recursion.
authorRoland McGrath <roland@gcc.gnu.org>
Mon, 3 Apr 1995 04:08:34 +0000 (04:08 +0000)
committerRoland McGrath <roland@gcc.gnu.org>
Mon, 3 Apr 1995 04:08:34 +0000 (04:08 +0000)
From-SVN: r9297

gcc/config/i386/linux.h

index 3238d442a4b94dd4cf7bff6f4a4bc8674433d340..e2a37839dffaf4519609f159f0ddddf79f7431e1 100644 (file)
@@ -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)");