diff options
author | Kelley Cook <kelleycook@wideopenwest.com> | 2003-05-19 18:09:59 +0000 |
---|---|---|
committer | DJ Delorie <dj@gcc.gnu.org> | 2003-05-19 14:09:59 -0400 |
commit | 399879760a2af9eef9055237d58b8081858e1481 (patch) | |
tree | e54cfd07672f1d2b51c1d518c00c5283584b31aa | |
parent | 025d9908d3e3816f06a045d936c569361522ec6e (diff) | |
download | gcc-399879760a2af9eef9055237d58b8081858e1481.zip gcc-399879760a2af9eef9055237d58b8081858e1481.tar.gz gcc-399879760a2af9eef9055237d58b8081858e1481.tar.bz2 |
* acinclude.m4: Accept i[3456789]86 for machine type.
From-SVN: r66968
-rw-r--r-- | config/ChangeLog | 4 | ||||
-rw-r--r-- | config/acinclude.m4 | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/config/ChangeLog b/config/ChangeLog index c34635d..13d3c88 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,7 @@ +2003-05-14 Kelley Cook <kelleycook@wideopenwest.com> + + * acinclude.m4: Accept i[3456789]86 for machine type. + 2003-05-18 Nathanael Nerode <neroden@gcc.gnu.org> * config/acx.m4: Introduce _GCC_TOPLEV_NONCANONICAL_BUILD, diff --git a/config/acinclude.m4 b/config/acinclude.m4 index 00887e0..c60373a 100644 --- a/config/acinclude.m4 +++ b/config/acinclude.m4 @@ -788,7 +788,7 @@ dnl Yes, this is ugly, and only used for a canadian cross anyway. This dnl is just to keep configure from stopping here. case "${host}" in changequote(,) - i[3456]86-*-*) ac_cv_c_little_endian=yes ;; + i[3456789]86-*-*) ac_cv_c_little_endian=yes ;; sparc*-*-*) ac_cv_c_little_endian=no ;; changequote([,]) *) AC_MSG_WARN(Can't cross compile this test) ;; |