aboutsummaryrefslogtreecommitdiff
path: root/gdb/configure.in
diff options
context:
space:
mode:
authorSteve Chamberlain <sac@cygnus>1992-03-13 16:47:29 +0000
committerSteve Chamberlain <sac@cygnus>1992-03-13 16:47:29 +0000
commitfe7ca711919a6d6d8b902be5f2e68eb1fc9144f2 (patch)
tree2b38e991ba12c31db2186a19fbcb2725e6bd7de1 /gdb/configure.in
parent12fa72d472818ac141933e6d53e18f3fd83c49ab (diff)
downloadgdb-fe7ca711919a6d6d8b902be5f2e68eb1fc9144f2.zip
gdb-fe7ca711919a6d6d8b902be5f2e68eb1fc9144f2.tar.gz
gdb-fe7ca711919a6d6d8b902be5f2e68eb1fc9144f2.tar.bz2
Reflect file name changes
Diffstat (limited to 'gdb/configure.in')
-rw-r--r--gdb/configure.in14
1 files changed, 7 insertions, 7 deletions
diff --git a/gdb/configure.in b/gdb/configure.in
index a5b1cd6..c8eccfe 100644
--- a/gdb/configure.in
+++ b/gdb/configure.in
@@ -160,13 +160,13 @@ arm | merlin | none | np1 | pn | pyramid | tahoe)
esac
-if [ ! -f ${srcdir}/config/mh-${gdb_host} ]; then
+if [ ! -f ${srcdir}/config/${gdb_host}.mh ]; 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 }' <${srcdir}/config/mh-${gdb_host}`
+hostfile=`awk '$1 == "XM_FILE=" { print $2 }' <${srcdir}/config/${gdb_host}.mh`
# per-target:
@@ -312,21 +312,21 @@ rs6000)
esac
-if [ ! -f ${srcdir}/config/mt-${gdb_target} ]; then
+if [ ! -f ${srcdir}/config/${gdb_target}.mt ]; then
echo '***' "Gdb does not support target ${target}" 1>&2
exit 1
fi
if [ -z "${removing}" ] ; then
- cat ${srcdir}/config/mh-${gdb_host} ${srcdir}/config/mt-${gdb_target} | awk '$1 == "#msg" {
+ cat ${srcdir}/config/${gdb_host}.mh ${srcdir}/config/${gdb_target}.mt | 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 }' <${srcdir}/config/mt-${gdb_target}`
+targetfile=`awk '$1 == "TM_FILE=" { print $2 }' <${srcdir}/config/${gdb_target}.mt`
-host_makefile_frag=config/mh-${gdb_host}
-target_makefile_frag=config/mt-${gdb_target}
+host_makefile_frag=config/${gdb_host}.mh
+target_makefile_frag=config/${gdb_target}.mt
# If hostfile (XM_FILE) and/or targetfile (TM_FILE) is not set in the
# ?config/* file, we don't make the corresponding links. But we have