Fix parsing tabs in ${gdb_target_obs}.
	* configure.tgt (gdb_have_gcore): Replace case with for and if.
        * 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  <jan.kratochvil@redhat.com>
 
        * remote.c (unpush_and_perror): Add output message final dot.
 
 
 # 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