diff options
author | Nick Clifton <nickc@redhat.com> | 2003-05-16 16:30:26 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2003-05-16 16:30:26 +0000 |
commit | 09a2fdfd57bb194df15efff5e737150bd55b3ebe (patch) | |
tree | 51120d2365032cdef3aed975046d1b95332044b2 /etc/configure.texi | |
parent | 8ed969331bd9f7b498d67b88cd079d74c61bdecb (diff) | |
download | cygnal-09a2fdfd57bb194df15efff5e737150bd55b3ebe.tar.gz cygnal-09a2fdfd57bb194df15efff5e737150bd55b3ebe.tar.bz2 cygnal-09a2fdfd57bb194df15efff5e737150bd55b3ebe.zip |
Replace i[3456]86 with i[3-7]86
Diffstat (limited to 'etc/configure.texi')
-rw-r--r-- | etc/configure.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/configure.texi b/etc/configure.texi index 91401671f..d69dc414d 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*}. |