diff options
author | Steve Chamberlain <steve@cygnus> | 1991-10-24 22:17:11 +0000 |
---|---|---|
committer | Steve Chamberlain <steve@cygnus> | 1991-10-24 22:17:11 +0000 |
commit | 825e656bf5a326fd4bbc0fc87bad4f96b503f346 (patch) | |
tree | d0d1880e616d05a6d6e425a24ce7e1cf7a5766fa /ld/configure.in | |
parent | 98b2ca1cde0f324600d1ff86f829900275f10ee4 (diff) | |
download | gdb-825e656bf5a326fd4bbc0fc87bad4f96b503f346.zip gdb-825e656bf5a326fd4bbc0fc87bad4f96b503f346.tar.gz gdb-825e656bf5a326fd4bbc0fc87bad4f96b503f346.tar.bz2 |
config file renaming, and boy did it need it!
Diffstat (limited to 'ld/configure.in')
-rw-r--r-- | ld/configure.in | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/ld/configure.in b/ld/configure.in index 8019765..15f3a6f 100644 --- a/ld/configure.in +++ b/ld/configure.in @@ -63,7 +63,7 @@ i386) sparc) case "${host_os}" in - sunos64) my_host=sparc-64 ;; + sunos64) my_host=sparc-ll ;; *) my_host=sparc ;; esac ;; @@ -100,7 +100,7 @@ fi host_makefile_frag= if [ -f config/h-${my_host} ] ; then - host_makefile_frag=config/h-${my_host} + host_makefile_frag=config/mh-${my_host} fi # per-target: @@ -116,7 +116,11 @@ sun) *) case ${target_cpu} in m88k) my_target=m88k-bcs ;; - a29k) my_target=coff-a29k ;; + a29k) case ${target_os} in + ebmon) my_target=ebmon29k ;; + *) my_target=coff-a29k ;; + esac + ;; h8300) my_target=h8300hds ;; m68k) case ${target_vendor} in @@ -131,4 +135,4 @@ sun) ;; esac -target_makefile_frag=config/t-${my_target} +target_makefile_frag=config/mt-${my_target} |