diff options
author | Ken Raeburn <raeburn@cygnus> | 1994-01-30 23:31:44 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1994-01-30 23:31:44 +0000 |
commit | 5677c0288df7ad19fa33d7bc21a757801120946a (patch) | |
tree | 256411a2eed632f12197ff4f6f1b43e44e431052 /gas/configure.in | |
parent | 4075afe126532225f7289a76edc8a4c84aeaa2c7 (diff) | |
download | gdb-5677c0288df7ad19fa33d7bc21a757801120946a.zip gdb-5677c0288df7ad19fa33d7bc21a757801120946a.tar.gz gdb-5677c0288df7ad19fa33d7bc21a757801120946a.tar.bz2 |
* configure.in: Handle host vax-*-ultrix* like vax-*-bsd*. Don't bother with
*-*-ultrix or *-*-sysv*, except *-*-sysv, since only the last has an existing
host support file. Do handle vax-bsd and vax-ultrix targets.
Diffstat (limited to 'gas/configure.in')
-rw-r--r-- | gas/configure.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gas/configure.in b/gas/configure.in index 803ff88..6533ece 100644 --- a/gas/configure.in +++ b/gas/configure.in @@ -64,10 +64,11 @@ case "${host}" in vax-*-vms*) gas_host=vms ;; vax-*-bsd*) gas_host=vax ;; + vax-*-ultrix*) gas_host=vax ;; *-*-sysv4* | *-*-unixware) gas_host=sysv ;; - *-*-ansi | *-*-ultrix | *-*-hpux | *-*-sysv*) + *-*-ansi | *-*-hpux | *-*-sysv) gas_host=${host_os} ;; esac @@ -201,6 +202,8 @@ case ${generic_target} in obj_format=elf ;; sparc64-*-aout*) obj_format=aout bfd_gas=yes ;; # v9 + vax-*-bsd* | vax-*-ultrix*) + obj_format=aout ;; vax-*-vms) obj_format=vms ;; z8k-*-coff | z8k-*-sim) |