diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index f4f8dc1db9..ae9a373e8f 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2007-03-02 Michael Snyder + + * Makefile.in: Remove spurious single-quotes from sed command. + 2007-02-28 Daniel Jacobowitz * gdb.mi/mi-var-cmd.exp: Correct test name. Allow any value for diff --git a/gdb/testsuite/Makefile.in b/gdb/testsuite/Makefile.in index 7bd9437981..44dc0a1336 100644 --- a/gdb/testsuite/Makefile.in +++ b/gdb/testsuite/Makefile.in @@ -55,7 +55,7 @@ RUNTEST_FOR_TARGET = `\ if [ "$(host_canonical)" = "$(target_canonical)" ]; then \ echo runtest; \ else \ - t='$(program_transform_name)'; echo runtest | sed -e '' $$t; \ + t='$(program_transform_name)'; echo runtest | sed -e $$t; \ fi; \ fi`