]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* ltmain.in (version_type): Oops. Irix versioning implies that
authorGary V. Vaughan <gary@gnu.org>
Thu, 18 Feb 1999 15:24:03 +0000 (15:24 +0000)
committerGary V. Vaughan <gary@gnu.org>
Thu, 18 Feb 1999 15:24:03 +0000 (15:24 +0000)
major version numbers are 1 based (not zero based).  Fixed.

ChangeLog
ltmain.in

index 2f9dc85a648aef80f3a29c2d33d397e7f14cf4fe..71fce9114138c7c149d2726ccfd46a12fe96cb90 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 1999-02-18  Gary V. Vaughan  <gvaughan@oranda.demon.co.uk>
 
+       * ltmain.in (version_type):  Oops.  Irix versioning implies that
+       major version numbers are 1 based (not zero based).  Fixed.
+       
        * ltmain.in (version_type): Implement irix versioning.
        * ltconfig.in (irix{5,6}*): Use new irix shared object versioning.
        * TODO: remove irix versioning from TODO list.
index 6dc32023ea0ca36e0383a31cab453760994bc96c..461660c17d83ce2bde125af24fa345d85aa0b2eb 100644 (file)
--- a/ltmain.in
+++ b/ltmain.in
@@ -1619,7 +1619,7 @@ compiler."
        none) ;;
 
        irix)
-         major=`expr $current - $age`
+         major=`expr $current - $age + 1`
          versuffix="$major.$revision"
          verstring="sgi$major.$revision"