From c96b3c4f35f054fc87dc6aaf3d7e0c21499ae13f Mon Sep 17 00:00:00 2001 From: Jan Kratochvil Date: Thu, 11 Apr 2013 16:53:01 +0000 Subject: [PATCH] gdb/ Fix parsing tabs in ${gdb_target_obs}. * configure.tgt (gdb_have_gcore): Replace case with for and if. --- gdb/ChangeLog | 3 +++ gdb/configure.tgt | 12 +++++------- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 0e65461591c..eaf9d042883 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -22,6 +22,9 @@ * gcore.in: ... here. Remove gcore.sh comment. Use GDB_TRANSFORM_NAME and GCORE_TRANSFORM_NAME substitutions. + Fix parsing tabs in ${gdb_target_obs}. + * configure.tgt (gdb_have_gcore): Replace case with for and if. + 2013-04-11 Jan Kratochvil * remote.c (unpush_and_perror): Add output message final dot. diff --git a/gdb/configure.tgt b/gdb/configure.tgt index 51fe87c620f..2435de4ffd4 100644 --- a/gdb/configure.tgt +++ b/gdb/configure.tgt @@ -707,11 +707,9 @@ esac # Check whether this target supports gcore. # Such target has to call set_gdbarch_find_memory_regions. -case " ${gdb_target_obs} " in - *" linux-tdep.o "*) +gdb_have_gcore=false +for t in x ${gdb_target_obs}; do + if test "$t" = linux-tdep.o; then gdb_have_gcore=true - ;; - *) - gdb_have_gcore=false - ;; -esac + fi +done -- 2.30.2