aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@cygnus>1992-04-09 09:54:52 +0000
committerKen Raeburn <raeburn@cygnus>1992-04-09 09:54:52 +0000
commit1900f884b366c5f94df5acb54882cf36152fac52 (patch)
tree353bd83e5d2c43d2f41e25baab30b2afa6a9a106 /ld
parent81484684f37708d547056bddeb5dfa45265a32fc (diff)
downloadgdb-1900f884b366c5f94df5acb54882cf36152fac52.zip
gdb-1900f884b366c5f94df5acb54882cf36152fac52.tar.gz
gdb-1900f884b366c5f94df5acb54882cf36152fac52.tar.bz2
Install second copy as $(tooldir)/bin/ld, since that's what gcc wants.
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog5
-rw-r--r--ld/Makefile.in4
2 files changed, 7 insertions, 2 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 68b65dd..4dbb78e 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,8 @@
+Thu Apr 9 05:52:02 1992 Ken Raeburn (Raeburn@Cygnus.COM)
+
+ * Makefile.in (install): Install second copy in $(tooldir)/bin
+ without $(program_prefix), since that's what gcc expects.
+
Sat Apr 4 17:44:06 1992 Steve Chamberlain (sac@thepub.cygnus.com)
* ldlex.l, ldgram.y, ldlex.h: Rewrote lexer. Now it's much nicer.
diff --git a/ld/Makefile.in b/ld/Makefile.in
index 62898e7..f9b4eeb 100644
--- a/ld/Makefile.in
+++ b/ld/Makefile.in
@@ -403,8 +403,8 @@ install: $(LD_PROG)
mv ld.new ld
-rm -f $(bindir)/$(program_prefix)ld
$(INSTALL_PROGRAM) ld $(bindir)/$(program_prefix)ld
- -rm -f $(tooldir)/ld
- $(INSTALL_PROGRAM) ld $(tooldir)/$(program_prefix)ld
+ -rm -f $(tooldir)/bin/ld
+ $(INSTALL_PROGRAM) ld $(tooldir)/bin/ld
-rm -f $(man1dir)/$(program_prefix)ld.1
$(INSTALL_DATA) $(srcdir)/gld.1 $(man1dir)/$(program_prefix)ld.1