From: Christopher Faylor Date: Sun, 6 Oct 2002 19:53:52 +0000 (+0000) Subject: * Makefile.in (install-gdbtk): Add missing continuation backslash to insure X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4092aadbf4fd3b86b30de37ba22d3925a03a150d;p=binutils-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 60f363cccc6..a7f4219411a 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2002-10-06 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-06 Mark Kettenis * config/i386/nm-i386sco.h: Add protection against diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 95330c0950b..416706a68fb 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -2341,7 +2341,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) ; \