summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2003-05-16 16:30:27 +0000
committerNick Clifton <nickc@redhat.com>2003-05-16 16:30:27 +0000
commit80c7c40aefc1dc3e07a8130ed5b40d91017e292a (patch)
treeb06e51d145551d2126548976741d77cfa64d7c08 /etc
parent71bee782bfd89ad38efaf5e653dc5c36f2673547 (diff)
downloadbinutils-gdb-80c7c40aefc1dc3e07a8130ed5b40d91017e292a.tar.gz
Replace i[3456]86 with i[3-7]86
Diffstat (limited to 'etc')
-rw-r--r--etc/ChangeLog4
-rw-r--r--etc/configure.texi4
2 files changed, 6 insertions, 2 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog
index 9a1a67d2015..6865f2df185 100644
--- a/etc/ChangeLog
+++ b/etc/ChangeLog
@@ -1,3 +1,7 @@
+2003-05-16 Kelley Cook <kelleycook@wideopenwest.com>
+
+ * configure.texi: Use "i[3-7]86" in example.
+
2003-01-02 H.J. Lu <hjl@gnu.org>
* Makefile.in (DESTDIR): New.
diff --git a/etc/configure.texi b/etc/configure.texi
index 91401671f92..d69dc414d0f 100644
--- a/etc/configure.texi
+++ b/etc/configure.texi
@@ -1451,7 +1451,7 @@ canonical configuration name (which will be the case if
@smallexample
case "$@{host@}" in
-i[3456]86-*-linux-gnu*) do something ;;
+i[3-7]86-*-linux-gnu*) do something ;;
sparc*-sun-solaris2.[56789]*) do something ;;
sparc*-sun-solaris*) do something ;;
mips*-*-elf*) do something ;;
@@ -1465,7 +1465,7 @@ field, in order to match the version number which will be generated by
In most cases you must be careful to match a range of processor types.
For most processor families, a trailing @samp{*} suffices, as in
@samp{mips*} above. For the i386 family, something along the lines of
-@samp{i[3456]86} suffices at present. For the m68k family, you will
+@samp{i[3-7]86} suffices at present. For the m68k family, you will
need something like @samp{m68*}. Of course, if you do not need to match
on the processor, it is simpler to just replace the entire field by a
@samp{*}, as in @samp{*-*-irix*}.