Reflect file name changes

This commit is contained in:
Steve Chamberlain
1992-03-13 16:47:29 +00:00
parent 12fa72d472
commit fe7ca71191
2 changed files with 109 additions and 109 deletions

View File

@ -21,108 +21,108 @@ Do-first:
Things-to-keep: Things-to-keep:
mh-3b1 3b1.mh
mh-altos altos.mh
mh-altosgas altosgas.mh
mh-amix amix.mh
mh-apollo68v apollo68v.mh
mh-arm arm.mh
mh-bigmips bigmips.mh
mh-convex convex.mh
mh-decstation decstation.mh
mh-delta88 delta88.mh
mh-hp300bsd hp300bsd.mh
mh-hp300hpux hp300hpux.mh
mh-i386mach i386mach.mh
mh-i386sco i386sco.mh
mh-i386v i386v.mh
mh-i386v4 i386v4.mh
mh-i386v-g i386v-g.mh
mh-i386v32 i386v32.mh
mh-i386v32-g i386v32-g.mh
mh-irix3 irix3.mh
mh-irix4 irix4.mh
mh-isi isi.mh
mh-littlemips littlemips.mh
mh-m88k m88k.mh
mh-merlin merlin.mh
mh-news news.mh
mh-news1000 news1000.mh
mh-none none.mh
mh-np1 np1.mh
mh-pn pn.mh
mh-pyramid pyramid.mh
mh-rs6000 rs6000.mh
mh-rtbsd rtbsd.mh
mh-stratus stratus.mh
mh-sun2os3 sun2os3.mh
mh-sun2os4 sun2os4.mh
mh-sun3 sun3.mh
mh-sun386 sun386.mh
mh-sun3os3 sun3os3.mh
mh-sun3os4 sun3os4.mh
mh-sun4 sun4.mh
mh-sun4os3 sun4os3.mh
mh-sun4os4 sun4os4.mh
mh-symmetry symmetry.mh
mh-tahoe tahoe.mh
mh-ultra3 ultra3.mh
mh-umax umax.mh
mh-vaxbsd vaxbsd.mh
mh-vaxult vaxult.mh
mt-3b1 3b1.mt
mt-a29k a29k.mt
mt-a29k-kern a29k-kern.mt
mt-altos altos.mt
mt-altosgas altosgas.mt
mt-amix amix.mt
mt-arm arm.mt
mt-bigmips bigmips.mt
mt-convex convex.mt
mt-decstation decstation.mt
mt-delta88 delta88.mt
mt-h8300hms h8300hms.mt
mt-hp300bsd hp300bsd.mt
mt-hp300hpux hp300hpux.mt
mt-i386sco i386sco.mt
mt-i386aout i386aout.mt
mt-i386v i386v.mt
mt-i386v4 i386v4.mt
mt-i386v-g i386v-g.mt
mt-i386v32 i386v32.mt
mt-i386v32-g i386v32-g.mt
mt-i960 i960.mt
mt-irix3 irix3.mt
mt-isi isi.mt
mt-littlemips littlemips.mt
mt-m88k m88k.mt
mt-merlin merlin.mt
mt-news news.mt
mt-news1000 news1000.mt
mt-nindy960 nindy960.mt
mt-none none.mt
mt-np1 np1.mt
mt-os68k os68k.mt
mt-pn pn.mt
mt-pyramid pyramid.mt
mt-rs6000 rs6000.mt
mt-stratus stratus.mt
mt-sun2os3 sun2os3.mt
mt-sun2os4 sun2os4.mt
mt-sun3 sun3.mt
mt-sun386 sun386.mt
mt-sun3os3 sun3os3.mt
mt-sun3os4 sun3os4.mt
mt-sun4 sun4.mt
mt-sun4os3 sun4os3.mt
mt-sun4os4 sun4os4.mt
mt-symmetry symmetry.mt
mt-tahoe tahoe.mt
mt-ultra3 ultra3.mt
mt-umax umax.mt
mt-vax vax.mt
mt-vxworks68 vxworks68.mt
mt-vxworks960 vxworks960.mt
Do-last: Do-last:

View File

@ -160,13 +160,13 @@ arm | merlin | none | np1 | pn | pyramid | tahoe)
esac 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 echo '***' "Gdb does not support host ${host}" 1>&2
exit 1 exit 1
fi fi
# We really shouldn't depend on there being a space after XM_FILE= ... # 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: # per-target:
@ -312,21 +312,21 @@ rs6000)
esac 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 echo '***' "Gdb does not support target ${target}" 1>&2
exit 1 exit 1
fi fi
if [ -z "${removing}" ] ; then 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)}' print substr($0,6)}'
fi fi
# We really shouldn't depend on there being a space after TM_FILE= ... # 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} host_makefile_frag=config/${gdb_host}.mh
target_makefile_frag=config/mt-${gdb_target} target_makefile_frag=config/${gdb_target}.mt
# If hostfile (XM_FILE) and/or targetfile (TM_FILE) is not set in the # 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 # ?config/* file, we don't make the corresponding links. But we have