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]

[PATCH] Fix recognition of ix86 in gdb.asm test


Without the extra [] the generated configure tries to match i345686*.
Checked in as obvious.

Mark

Index: testsuite/ChangeLog
from  Mark Kettenis  <kettenis@gnu.org>

	* gdb.asm/configure.in: Fix recognition of ix86 target.
	* gdb.asm/configure: Regenerate.

Index: testsuite/gdb.asm/configure.in
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.asm/configure.in,v
retrieving revision 1.3
diff -u -p -r1.3 configure.in
--- testsuite/gdb.asm/configure.in 2001/11/22 01:13:10 1.3
+++ testsuite/gdb.asm/configure.in 2001/11/24 14:42:43
@@ -16,7 +16,7 @@ dnl In default case we need to link with
 archinc=common.inc
 case ${target} in
 d10v-*-*) archinc=d10v.inc ;;
-i[3456]86*) archinc=i386.inc ;;
+i[[3456]]86*) archinc=i386.inc ;;
 m32r*-*) archinc=m32r.inc ;;
 esac
 AC_LINK_FILES($archinc,arch.inc)


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