Install second copy as $(tooldir)/bin/ld, since that's what gcc wants.

This commit is contained in:
Ken Raeburn 1992-04-09 09:54:52 +00:00
parent 81484684f3
commit 1900f884b3
2 changed files with 7 additions and 2 deletions

View File

@ -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.

View File

@ -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