This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[commit] Fix typo in TM_FILE


FYI,

I committed the attached. Picked up while checking all the crosses.

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

	* configure.in (GDB_TM_FILE): Fix typo, use gdb_target_cpu and not
	gdb_host_cpu.

Index: configure.in
===================================================================
RCS file: /cvs/src/src/gdb/configure.in,v
retrieving revision 1.169
diff -p -u -r1.169 configure.in
--- configure.in	2 Sep 2004 22:14:31 -0000	1.169
+++ configure.in	3 Sep 2004 16:58:25 -0000
@@ -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}"

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]