diff options
author | John Gilmore <gnu@cygnus> | 1992-02-07 15:55:35 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1992-02-07 15:55:35 +0000 |
commit | 3b2cf8e86563c16942c7224a6beec0d1336b4c45 (patch) | |
tree | bbe0d3149775456484b9be1b21a9dad9b44f8a67 /configure.in | |
parent | c556c4267b5c6ab3e596bc8d87da2fb0ca48d4f6 (diff) | |
download | gdb-3b2cf8e86563c16942c7224a6beec0d1336b4c45.zip gdb-3b2cf8e86563c16942c7224a6beec0d1336b4c45.tar.gz gdb-3b2cf8e86563c16942c7224a6beec0d1336b4c45.tar.bz2 |
* configure.in: Ultrix is only a decstation if it's a MIPS.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 7fc6b48..f42b5a8 100644 --- a/configure.in +++ b/configure.in @@ -15,7 +15,10 @@ case "${host_os}" in m88kbcs) host_makefile_frag=config/mh-delta88;; sysv4*) host_makefile_frag=config/mh-sysv4 ;; sysv* | irix*) host_makefile_frag=config/mh-sysv ;; -ultrix) host_makefile_frag=config/mh-decstation ;; +ultrix*) + case "${host_cpu}" in + mips) host_makefile_frag=config/mh-decstation ;; + esac esac case "${host_vendor}" in |