diff options
author | Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> | 2002-11-20 15:59:07 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2002-11-20 15:59:07 +0000 |
commit | e6226a2f87a75d3daf21896affc0857a94d5d4ac (patch) | |
tree | 364c58b7975a1024e3f7790e762f2842ef95420c /ltmain.sh | |
parent | 54d9d34a9bafd79987e6b7ea3aefb4fd26f539e3 (diff) | |
download | gcc-e6226a2f87a75d3daf21896affc0857a94d5d4ac.tar.gz |
ltconfig (osf[345]): Append $major to soname_spec.
* ltconfig (osf[345]): Append $major to soname_spec.
Reflect this in library_names_spec.
* ltmain.sh (osf): Prefix $major with . for use as extension.
boehm-gc:
* ltconfig (osf[345]): Append $major to soname_spec.
Reflect this in library_names_spec.
* ltmain.sh (osf): Prefix $major with . for use as extension.
From-SVN: r59306
Diffstat (limited to 'ltmain.sh')
-rw-r--r-- | ltmain.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ltmain.sh b/ltmain.sh index 92526b60b79..5d4281c54d2 100644 --- a/ltmain.sh +++ b/ltmain.sh @@ -2606,7 +2606,7 @@ EOF ;; osf) - major=`expr $current - $age` + major=.`expr $current - $age` versuffix=".$current.$age.$revision" verstring="$current.$age.$revision" |