diff options
author | Erich Stefan Boleyn <erich@uruk.org> | 1993-10-03 16:50:05 +0000 |
---|---|---|
committer | Erich Stefan Boleyn <erich@uruk.org> | 1993-10-03 16:50:05 +0000 |
commit | 35440f490d142e00bc38c775e0b7ae8fd9c4a1ba (patch) | |
tree | f99f151b31bdb76477f1f92a20d91532f1e6650b /config.sub | |
parent | 9ba7210df54724a3e7e5968660ecb8ccb380ae39 (diff) | |
download | emacs-35440f490d142e00bc38c775e0b7ae8fd9c4a1ba.tar.gz |
Recognize operating system "riscix*"; recognize acorn as vendor
Diffstat (limited to 'config.sub')
-rwxr-xr-x | config.sub | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/config.sub b/config.sub index db61b9db0e8..90689dceaaf 100755 --- a/config.sub +++ b/config.sub @@ -518,7 +518,7 @@ case $os in | -amigados* | -msdos* | -newsos* | -unicos* | -aos* \ | -nindy* | -vxworks* | -ebmon* | -hms* | -mvs* | -clix* \ | -riscos* | -linux* | -uniplus* | -iris* | -rtu* | -xenix* \ - | -386bsd* | -netbsd* | -lynxos*) + | -386bsd* | -netbsd* | -riscix* | -lynxos*) ;; -sunos5*) os=`echo $os | sed -e 's|sunos5|solaris2|'` @@ -587,6 +587,9 @@ else # system, and we'll never get to this point. case $basic_machine in + *-acorn) + os=-riscix1.2 + ;; *-dec | vax-*) os=-ultrix4.2 ;; @@ -671,6 +674,9 @@ vendor=unknown case $basic_machine in *-unknown) case $os in + -riscix*) + vendor=acorn + ;; -sunos*) vendor=sun ;; |