aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/m68k/linux.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index e348057..083f0d9 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2001-11-14 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
+
+ * m68k/linux.h: Include <linux.h> not "linux.h" to avoid infinite
+ recursion.
+
2001-11-14 Roger Sayle <roger@eyesopen.com>
* fold-const.c (fold): Optimize strlen comparisons against zero.
diff --git a/gcc/config/m68k/linux.h b/gcc/config/m68k/linux.h
index 256d790..f7bb8ae 100644
--- a/gcc/config/m68k/linux.h
+++ b/gcc/config/m68k/linux.h
@@ -31,7 +31,7 @@ Boston, MA 02111-1307, USA. */
#include "elfos.h"
#include "svr4.h"
-#include "linux.h" /* some common stuff */
+#include <linux.h> /* some common stuff */
#undef TARGET_VERSION
#define TARGET_VERSION fprintf (stderr, " (68k GNU/Linux with ELF)");