From: Christopher Faylor Date: Wed, 23 Oct 2002 03:14:16 +0000 (+0000) Subject: * Makefile.in (install-gdbtk): Add missing continuation backslash to insure X-Git-Tag: gdb_5_3-2002-12-12-release~98 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c8968e8e178c89f19f0cd206794e2f15b107863c;p=thirdparty%2Fbinutils-gdb.git * Makefile.in (install-gdbtk): Add missing continuation backslash to insure that shell variables, such as "transformed_name" are propagated to later shell statements in rule. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3003faaf200..7983207703f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2002-10-22 Christopher Faylor + + * Makefile.in (install-gdbtk): Add missing continuation backslash to + insure that shell variables, such as "transformed_name" are propagated + to later shell statements in rule. + 2002-10-20 Mark Kettenis * configure.tgt (i[3456]86-*-openbsd*): Set gdb_target to obds. diff --git a/gdb/Makefile.in b/gdb/Makefile.in index d56dc1569a0..bc9c2b4d92f 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -2326,7 +2326,7 @@ install-gdbtk: else \ true ; \ fi ; \ - $(SHELL) $(srcdir)/../mkinstalldirs $(bindir) + $(SHELL) $(srcdir)/../mkinstalldirs $(bindir); \ $(INSTALL_PROGRAM) insight$(EXEEXT) $(bindir)/$$transformed_name$(EXEEXT) ; \ $(SHELL) $(srcdir)/../mkinstalldirs $(GDBTK_LIBRARY) ; \ $(SHELL) $(srcdir)/../mkinstalldirs $(libdir)/insight$(GDBTK_VERSION) ; \