Commit f45aa40e by Richard Stallman

($os alternatives for sco and isc): Preserve the specified os version if any.

Each alternative handles both 386 and 486, preserving distinction.
($basic_machine alternatives for sco and isc): Deleted.
(i[34]86v32, i[34]86v, i[34]86v4):
Handle both cpus together, preserving distinction.

From-SVN: r3093
parent 2a00acf0
...@@ -70,19 +70,18 @@ case $os in ...@@ -70,19 +70,18 @@ case $os in
;; ;;
-sco3.2v[4-9]*) -sco3.2v[4-9]*)
# Don't forget version if it is 3.2v4 or newer. # Don't forget version if it is 3.2v4 or newer.
os=-sco3.2v4 basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
basic_machine=i386-unknown
;; ;;
-sco*) -sco*)
os=-sco3.2v2 os=-sco3.2v2
basic_machine=i386-unknown basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
;; ;;
-isc) -isc)
os=-isc2.2 os=-isc2.2
basic_machine=i386-unknown basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
;; ;;
-isc*) -isc*)
basic_machine=i386-unknown basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
;; ;;
esac esac
...@@ -113,44 +112,17 @@ case $basic_machine in ...@@ -113,44 +112,17 @@ case $basic_machine in
basic_machine=vax-dec basic_machine=vax-dec
os=-vms os=-vms
;; ;;
i386v32) # I'm not sure what "Sysv32" means. Should this be sysv3.2?
basic_machine=i386-unknown i[34]86v32)
basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'`
os=-sysv32 os=-sysv32
;; ;;
i386-sco* | i386sco | sco) i[34]86v4*)
basic_machine=i386-unknown basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'`
os=-sco3.2v2
;;
i386-isc* | isc)
basic_machine=i386-unknown
os=-isc
;;
i486v32)
basic_machine=i486-unknown
os=-sysv32
;;
i486-sco* | i486sco | sco)
basic_machine=i486-unknown
os=-sco3.2v2
;;
i486-isc* | isc)
basic_machine=i486-unknown
os=-isc
;;
i386v4*)
basic_machine=i386-unknown
os=-sysv4
;;
i486v4*)
basic_machine=i486-unknown
os=-sysv4 os=-sysv4
;; ;;
i386v) i[34]86v)
basic_machine=i386-unknown basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'`
os=-sysv
;;
i486v)
basic_machine=i486-unknown
os=-sysv os=-sysv
;; ;;
spur) spur)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment