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
This commit is contained in:
committed by
Jeff Law
parent
f1365db76c
commit
4adfda4eee
@@ -1,3 +1,8 @@
|
||||
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)
|
||||
|
||||
* Makefile.in (INTERFACE): Bump to 3.
|
||||
|
||||
@@ -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 =
|
||||
|
||||
|
||||
Reference in New Issue
Block a user