From 3978d0599b2b0f499090902b6d517411d3d63bda Mon Sep 17 00:00:00 2001 From: John Gilmore Date: Thu, 21 Nov 1991 03:04:36 +0000 Subject: [PATCH] Makefile fragments for various hosts and targets now come from gdb/config/mh-* and gdb/config/mt-*. This is for consistency with other config setups. --- gdb/ChangeLog | 4 ++++ gdb/configure.in | 14 +++++++------- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 196e7a5e76..b7a473f450 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ Wed Nov 20 18:35:56 1991 John Gilmore (gnu at cygnus.com) + * configure.in, xconfig, tconfig: Makefile fragments for various + hosts and targets now come from gdb/config/mh-* and + gdb/config/mt-*. This is for consistency with other config setups. + * rs6000-pinsn.c, rs6k-opcode.h: Clean up. * rs6k-opcode.def: Delete. diff --git a/gdb/configure.in b/gdb/configure.in index ce82cf2c55..6656c19c95 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -133,13 +133,13 @@ arm | vax | merlin | none | np1 | pn | pyramid | tahoe) esac -if [ ! -f xconfig/${gdb_host} ]; then +if [ ! -f config/mh-${gdb_host} ]; then echo '***' "Gdb does not support host ${host}" 1>&2 exit 1 fi # We really shouldn't depend on there being a space after XM_FILE= ... -hostfile=`awk '$1 == "XM_FILE=" { print $2 }' &2 exit 1 fi if [ -z "${removing}" ] ; then - cat xconfig/${gdb_host} tconfig/${gdb_target} | awk '$1 == "#msg" { + cat config/mh-${gdb_host} config/mt-${gdb_target} | awk '$1 == "#msg" { print substr($0,6)}' fi # We really shouldn't depend on there being a space after TM_FILE= ... -targetfile=`awk '$1 == "TM_FILE=" { print $2 }'