Makefile fragments for various hosts and targets now come from
authorJohn Gilmore <gnu@cygnus>
Thu, 21 Nov 1991 03:04:36 +0000 (03:04 +0000)
committerJohn Gilmore <gnu@cygnus>
Thu, 21 Nov 1991 03:04:36 +0000 (03:04 +0000)
gdb/config/mh-* and gdb/config/mt-*.  This is for consistency with
other config setups.

gdb/ChangeLog
gdb/configure.in

index 196e7a5e76bf5ac57ca17b7300e5e0d957bd347d..b7a473f4502bf83288ecfb3faa9c5f8568595ebf 100644 (file)
@@ -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.
 
index ce82cf2c559c25ae371e59c4387f397dba193367..6656c19c9500824698b5cd31d0175147a14026f3 100644 (file)
@@ -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 }' <xconfig/${gdb_host}`
+hostfile=`awk '$1 == "XM_FILE=" { print $2 }' <config/mh-${gdb_host}`
 
 # per-target:
 
@@ -273,21 +273,21 @@ rs6000)
 
 esac
 
-if [ ! -f tconfig/${gdb_target} ]; then
+if [ ! -f config/mt-${gdb_target} ]; then
        echo '***' "Gdb does not support target ${target}" 1>&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 }' <tconfig/${gdb_target}`
+targetfile=`awk '$1 == "TM_FILE=" { print $2 }' <config/mt-${gdb_target}`
 
-host_makefile_frag=xconfig/${gdb_host}
-target_makefile_frag=tconfig/${gdb_target}
+host_makefile_frag=config/mh-${gdb_host}
+target_makefile_frag=config/mt-${gdb_target}
 
 # 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
This page took 0.028098 seconds and 4 git commands to generate.