2004-09-03 Andrew Cagney <cagney@gnu.org>

* configure.in (GDB_TM_FILE): Fix typo, use gdb_target_cpu and not
	gdb_host_cpu.
This commit is contained in:
Andrew Cagney 2004-09-03 16:59:30 +00:00
parent 42851540ac
commit b8c4aecef5
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2004-09-03 Andrew Cagney <cagney@gnu.org>
* configure.in (GDB_TM_FILE): Fix typo, use gdb_target_cpu and not
gdb_host_cpu.
2004-09-02 Joel Brobecker <brobecker@gnat.com>
* mips-tdep.c (mips_insn32_frame_cache): Remove some dead code.

2
gdb/configure vendored
View File

@ -11050,7 +11050,7 @@ tm_h=""
if test "${targetfile}" != ""; then
tm_h=tm.h
case "${targetfile}" in
tm-*.h ) GDB_TM_FILE="config/${gdb_host_cpu}/${targetfile}" ;;
tm-*.h ) GDB_TM_FILE="config/${gdb_target_cpu}/${targetfile}" ;;
* ) GDB_TM_FILE="${targetfile}"
esac
files="${files} ${GDB_TM_FILE}"

View File

@ -1535,7 +1535,7 @@ tm_h=""
if test "${targetfile}" != ""; then
tm_h=tm.h
case "${targetfile}" in
tm-*.h ) GDB_TM_FILE="config/${gdb_host_cpu}/${targetfile}" ;;
tm-*.h ) GDB_TM_FILE="config/${gdb_target_cpu}/${targetfile}" ;;
* ) GDB_TM_FILE="${targetfile}"
esac
files="${files} ${GDB_TM_FILE}"