2003-10-07 Theodore A. Roth * Makefile.in (uninstall): Quote sed expression when generating transformed_name. (install-gdbtk): Ditto. (uninstall-gdbtk): Ditto. Index: Makefile.in =================================================================== RCS file: /cvs/src/src/gdb/Makefile.in,v retrieving revision 1.450 diff -u -p -r1.450 Makefile.in --- Makefile.in 26 Sep 2003 14:36:56 -0000 1.450 +++ Makefile.in 7 Oct 2003 22:11:26 -0000 @@ -980,7 +980,7 @@ install-only: $(CONFIG_INSTALL) uninstall: force $(CONFIG_UNINSTALL) transformed_name=`t='$(program_transform_name)'; \ - echo gdb | sed -e $$t` ; \ + echo gdb | sed -e "$$t"` ; \ if test "x$$transformed_name" = x; then \ transformed_name=gdb ; \ else \ @@ -2517,7 +2517,7 @@ all-gdbtk: insight$(EXEEXT) install-gdbtk: transformed_name=`t='$(program_transform_name)'; \ - echo insight | sed -e $$t` ; \ + echo insight | sed -e "$$t"` ; \ if test "x$$transformed_name" = x; then \ transformed_name=insight ; \ else \ @@ -2547,7 +2547,7 @@ install-gdbtk: uninstall-gdbtk: transformed_name=`t='$(program_transform_name)'; \ - echo insight | sed -e $$t` ; \ + echo insight | sed -e "$$t"` ; \ if test "x$$transformed_name" = x; then \ transformed_name=insight ; \ else \