diff options
author | Ian Lance Taylor <iant@google.com> | 2008-02-05 22:22:09 +0000 |
---|---|---|
committer | Ian Lance Taylor <iant@google.com> | 2008-02-05 22:22:09 +0000 |
commit | 56fd6e75dbcbf11bba497eec82e30e745c60506f (patch) | |
tree | d4304b604aaf76bace274f2027407ca582e68d1d /gold/Makefile.am | |
parent | 439048e8fe50ff5958be88f571d850a3fbfcb17e (diff) | |
download | gdb-56fd6e75dbcbf11bba497eec82e30e745c60506f.zip gdb-56fd6e75dbcbf11bba497eec82e30e745c60506f.tar.gz gdb-56fd6e75dbcbf11bba497eec82e30e745c60506f.tar.bz2 |
From Ollie Wild: add missing backquote to install-exec-local.
Diffstat (limited to 'gold/Makefile.am')
-rw-r--r-- | gold/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gold/Makefile.am b/gold/Makefile.am index d01ab81..cef759e 100644 --- a/gold/Makefile.am +++ b/gold/Makefile.am @@ -130,7 +130,7 @@ check: libgold.a install-exec-local: ld-new$(EXEEXT) $(mkinstalldirs) $(DESTDIR)$(bindir) $(DESTDIR)$(tooldir)/bin - n=`echo ld | sed '$(transform)'; \ + n=`echo ld | sed '$(transform)'`; \ $(INSTALL_PROGRAM) ld-new$(EXEEXT) $(DESTDIR)$(bindir)/$${n}$(EXEEXT); \ if test "$(bindir)" != "$(tooldir)/bin"; then \ rm -f $(DESTDIR)$(tooldir)/bin/ld$(EXEEXT); \ |