Commit 4adfda4e by Loren J. Rittle Committed by Jeff Law

Makefile.in (MARLINK, MSHLINK): Handle library version number components with…

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: r28531
parent f1365db7
Thu Aug 5 02:00:13 1999 Loren Rittle <ljrittle@acm.org>
* Makefile.in (MARLINK, MSHLINK): Handle library version
number components with more than one numeric digit.
Sat Jul 17 23:51:58 1999 Jeffrey A Law (law@cygnus.com) Sat Jul 17 23:51:58 1999 Jeffrey A Law (law@cygnus.com)
* Makefile.in (INTERFACE): Bump to 3. * Makefile.in (INTERFACE): Bump to 3.
......
...@@ -32,11 +32,11 @@ HEADERS= cassert cctype cerrno cfloat ciso646 climits clocale cmath complex \ ...@@ -32,11 +32,11 @@ HEADERS= cassert cctype cerrno cfloat ciso646 climits clocale cmath complex \
ARLIB = libstdc++.a.$(VERSION) ARLIB = libstdc++.a.$(VERSION)
ARLINK = libstdc++.a 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) SHLIB = libstdc++.so.$(VERSION)
SHARLIB = libstdc++-sh.a SHARLIB = libstdc++-sh.a
SHLINK = libstdc++.so 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 = SHFLAGS =
SHDEPS = SHDEPS =
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment