summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorDJ Delorie <dj@redhat.com>2003-05-19 18:11:58 +0000
committerDJ Delorie <dj@redhat.com>2003-05-19 18:11:58 +0000
commit31bb6de964551d8d64a9397be2c37198d8edf892 (patch)
treea7253e8e67faf3273930504a8e4f59a265ee2670 /config
parentd8ee8ca551f8b7ce4e10d514b3e5a441b9ba9a2f (diff)
downloadcygnal-31bb6de964551d8d64a9397be2c37198d8edf892.tar.gz
cygnal-31bb6de964551d8d64a9397be2c37198d8edf892.tar.bz2
cygnal-31bb6de964551d8d64a9397be2c37198d8edf892.zip
* acinclude.m4: Accept i[3456789]86 for machine type.
Diffstat (limited to 'config')
-rw-r--r--config/ChangeLog4
-rwxr-xr-xconfig/acinclude.m42
2 files changed, 5 insertions, 1 deletions
diff --git a/config/ChangeLog b/config/ChangeLog
index c34635d7c..13d3c8868 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 00887e0dd..c60373a2f 100755
--- 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) ;;