From b9e6eb36ff871a2b0216d06e4b55183643eadc24 Mon Sep 17 00:00:00 2001 From: Alexandre Oliva Date: Wed, 27 Aug 1997 06:04:41 +0000 Subject: [PATCH] Makefile.in: create correct multiple links to shared libstdc++. * Makefile.in: create correct multiple links to shared libstdc++. From-SVN: r14953 --- libstdc++/ChangeLog | 5 +++++ libstdc++/Makefile.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/libstdc++/ChangeLog b/libstdc++/ChangeLog index a42433ae037..42802f8e3f6 100644 --- a/libstdc++/ChangeLog +++ b/libstdc++/ChangeLog @@ -1,3 +1,8 @@ +Wed Aug 27 00:04:33 1997 Alexandre Oliva (oliva@dcc.unicamp.br) + + * Makefile.in: create correct multiple links to + shared libstdc++. + Tue Aug 26 12:24:01 1997 H.J. Lu (hjl@gnu.ai.mit.edu) * testsuite/Makefile.in (check): Don't depend on site.exp. diff --git a/libstdc++/Makefile.in b/libstdc++/Makefile.in index 79d8d88e500..c8f7b145210 100644 --- a/libstdc++/Makefile.in +++ b/libstdc++/Makefile.in @@ -269,7 +269,7 @@ install: elif [ $$FILE = mshlink ]; then \ for FILE in $(MSHLINK) ; do \ rm -f $(INSTALLDIR)$(MULTISUBDIR)/$$FILE ; \ - ln -s -f $$FILE $(INSTALLDIR)$(MULTISUBDIR)/$$FILE ; \ + ln -s -f $(SHLIB) $(INSTALLDIR)$(MULTISUBDIR)/$$FILE ; \ done; \ elif [ $$FILE = $(SHLIB) ]; then \ $(INSTALL_PROGRAM) $$FILE $(INSTALLDIR)$(MULTISUBDIR)/$$FILE ; \