diff options
author | Richard Stallman <rms@gnu.org> | 1995-04-07 07:32:44 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1995-04-07 07:32:44 +0000 |
commit | 203fffe550058ffd67abc52908652e849ec54603 (patch) | |
tree | ab18ebd5f340a3eeb7b03cd0f61f67eba0cd0606 | |
parent | 6bac1e649626ba7afbe4100dfbaa26f6b361129c (diff) | |
download | gcc-203fffe550058ffd67abc52908652e849ec54603.zip gcc-203fffe550058ffd67abc52908652e849ec54603.tar.gz gcc-203fffe550058ffd67abc52908652e849ec54603.tar.bz2 |
Accept -lites* as op sys.
From-SVN: r9321
-rwxr-xr-x | gcc/config.sub | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/config.sub b/gcc/config.sub index 5641cc1..70f3ba2 100755 --- a/gcc/config.sub +++ b/gcc/config.sub @@ -601,7 +601,7 @@ case $os in ;; # First accept the basic system types. # The portable systems comes first. - # Each alternative must end in a *, to match a version number. + # Each alternative MUST END IN A *, to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[345]* \ @@ -611,7 +611,9 @@ case $os in | -riscos* | -linux* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -netbsd* | -freebsd* | -riscix* \ | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* \ - | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta | -udi | -eabi) + | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ + | -udi* | -eabi* | -lites* ) + # Remember, each alternative MUST END IN *, to match a version number. ;; -sunos5*) os=`echo $os | sed -e 's|sunos5|solaris2|'` |