diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2013-04-11 16:53:01 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2013-04-11 16:53:01 +0000 |
commit | c96b3c4f35f054fc87dc6aaf3d7e0c21499ae13f (patch) | |
tree | 12ee4d90cb5741e96764efd02f905d1d705f7f5e /gdb/configure.tgt | |
parent | b292c7831823605b02a564b0a9274f95141c92ee (diff) | |
download | gdb-c96b3c4f35f054fc87dc6aaf3d7e0c21499ae13f.zip gdb-c96b3c4f35f054fc87dc6aaf3d7e0c21499ae13f.tar.gz gdb-c96b3c4f35f054fc87dc6aaf3d7e0c21499ae13f.tar.bz2 |
gdb/
Fix parsing tabs in ${gdb_target_obs}.
* configure.tgt (gdb_have_gcore): Replace case with for and if.
Diffstat (limited to 'gdb/configure.tgt')
-rw-r--r-- | gdb/configure.tgt | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/gdb/configure.tgt b/gdb/configure.tgt index 51fe87c..2435de4 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 |