From: Theodore A. Roth Date: Fri, 11 Jul 2003 17:56:47 +0000 (+0000) Subject: * Makefile.in: Quote sed expression when generating transformed_name. X-Git-Tag: cagney_x86i386-20030821-branchpoint~84 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=468fcdf141594202bfe928463970a7f621415f13;p=thirdparty%2Fbinutils-gdb.git * Makefile.in: Quote sed expression when generating transformed_name. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 1c6bcc5192a..ebc5aeb2097 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2003-07-11 Theodore A. Roth + + * Makefile.in: Quote sed expression when generating transformed_name. + 2003-07-11 Richard Henderson * Makefile.in (dwarf2-frame.o): Add complaints_h. diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 8786cbd0b15..ae84303394b 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -956,7 +956,7 @@ gdb.z:gdb.1 install: all install-only install-only: $(CONFIG_INSTALL) 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 \