diff options
Diffstat (limited to 'gdb/testsuite/configure')
-rwxr-xr-x | gdb/testsuite/configure | 45 |
1 files changed, 28 insertions, 17 deletions
diff --git a/gdb/testsuite/configure b/gdb/testsuite/configure index b593cd3..859f348 100755 --- a/gdb/testsuite/configure +++ b/gdb/testsuite/configure @@ -3479,26 +3479,37 @@ test "$program_suffix" != NONE && ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` -transform=`echo "$program_transform_name" | sed -e 's/\\$\\$/\\$/g'` -STRIP_TRANSFORM_NAME=`echo strip | sed -e "$transform"` -if test "x$STRIP_TRANSFORM_NAME" = x; then - STRIP_TRANSFORM_NAME=strip -fi -READELF_TRANSFORM_NAME=`echo readelf | sed -e "$transform"` -if test "x$READELF_TRANSFORM_NAME" = x; then - READELF_TRANSFORM_NAME=readelf -fi + gdb_ac_transform=`echo "$program_transform_name" | sed -e 's/\\$\\$/\\$/g'` + STRIP_TRANSFORM_NAME=`echo strip | sed -e "$gdb_ac_transform"` + if test "x$STRIP_TRANSFORM_NAME" = x; then + STRIP_TRANSFORM_NAME=strip + fi -GAS_TRANSFORM_NAME=`echo as | sed -e "$transform"` -if test "x$GAS_TRANSFORM_NAME" = x; then - GAS_TRANSFORM_NAME=as -fi -NM_TRANSFORM_NAME=`echo nm | sed -e "$transform"` -if test "x$NM_TRANSFORM_NAME" = x; then - NM_TRANSFORM_NAME=nm -fi + + gdb_ac_transform=`echo "$program_transform_name" | sed -e 's/\\$\\$/\\$/g'` + READELF_TRANSFORM_NAME=`echo readelf | sed -e "$gdb_ac_transform"` + if test "x$READELF_TRANSFORM_NAME" = x; then + READELF_TRANSFORM_NAME=readelf + fi + + + + gdb_ac_transform=`echo "$program_transform_name" | sed -e 's/\\$\\$/\\$/g'` + GAS_TRANSFORM_NAME=`echo as | sed -e "$gdb_ac_transform"` + if test "x$GAS_TRANSFORM_NAME" = x; then + GAS_TRANSFORM_NAME=as + fi + + + + gdb_ac_transform=`echo "$program_transform_name" | sed -e 's/\\$\\$/\\$/g'` + NM_TRANSFORM_NAME=`echo nm | sed -e "$gdb_ac_transform"` + if test "x$NM_TRANSFORM_NAME" = x; then + NM_TRANSFORM_NAME=nm + fi + ac_config_files="$ac_config_files lib/pdtrace" |