From: Loren J. Rittle Date: Thu, 5 Aug 1999 08:00:40 +0000 (-0600) Subject: Makefile.in (MARLINK, MSHLINK): Handle library version number components with more... X-Git-Tag: releases/gcc-2.95.1~36 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c33e316b2626681d24da70aefa6df5b162e1e982;p=thirdparty%2Fgcc.git Makefile.in (MARLINK, MSHLINK): Handle library version number components with more than one numeric digit. * Makefile.in (MARLINK, MSHLINK): Handle library version number components with more than one numeric digit. From-SVN: r28530 --- diff --git a/libstdc++/ChangeLog b/libstdc++/ChangeLog index 4753928aa774..ad16608955be 100644 --- a/libstdc++/ChangeLog +++ b/libstdc++/ChangeLog @@ -1,3 +1,8 @@ +Thu Aug 5 02:00:13 1999 Loren Rittle + + * Makefile.in (MARLINK, MSHLINK): Handle library version + number components with more than one numeric digit. + Mon Aug 2 00:40:10 1999 Jeffrey A Law (law@cygnus.com) 1999-07-16 Markus Gyger (mgyger@gmu.edu) diff --git a/libstdc++/Makefile.in b/libstdc++/Makefile.in index 6b4b57d721df..eb9ec77412c5 100644 --- a/libstdc++/Makefile.in +++ b/libstdc++/Makefile.in @@ -32,11 +32,11 @@ HEADERS= cassert cctype cerrno cfloat ciso646 climits clocale cmath complex \ ARLIB = libstdc++.a.$(VERSION) ARLINK = libstdc++.a -MARLINK = libstdc++.a.`echo $(VERSION) | sed 's/\([0-9][.][0-9]\).*/\1/'` +MARLINK = libstdc++.a.`echo $(VERSION) | sed 's/\([0-9]*[.][0-9]*\).*/\1/'` SHLIB = libstdc++.so.$(VERSION) SHARLIB = libstdc++-sh.a SHLINK = libstdc++.so -MSHLINK = libstdc++.so.`echo $(VERSION) | sed 's/\([0-9][.][0-9]\).*/\1/'` +MSHLINK = libstdc++.so.`echo $(VERSION) | sed 's/\([0-9]*[.][0-9]*\).*/\1/'` SHFLAGS = SHDEPS =