diff options
author | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-11-20 15:59:07 +0000 |
---|---|---|
committer | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-11-20 15:59:07 +0000 |
commit | 0753f1b5364c4fe7169b9a836b0bc365ffd31300 (patch) | |
tree | 364c58b7975a1024e3f7790e762f2842ef95420c /ltmain.sh | |
parent | c7db3d1af9f6f11db99200cdfa3aeb103fad7589 (diff) | |
download | gcc-0753f1b5364c4fe7169b9a836b0bc365ffd31300.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@59306 138bc75d-0d04-0410-961f-82ee72b054a4
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" |