diff options
author | Richard Yao <[email protected]> | 2013-09-26 13:44:10 -0400 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2013-10-10 16:56:51 -0700 |
commit | a6ce1eae54ca048ae7e7dfdcad05c5565a129226 (patch) | |
tree | 182cb119577a2c9c8db5d04d6daa54cdf05feeef /rpm | |
parent | 31fc19399e597e3391f19f1392ab120f1de0d5f2 (diff) |
Fix libzfs_core changes to follow GNU libtool guidelines
The GNU libtool documentation states to start with a version of 0:0:0,
rather than 1:1:0. Illumos uses the name libzfs_core.so.1, so to be
consistent, we should go with 1:0:0.
http://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info
The GNU libtool documentation also provides guidence on how the version
information should be incremented. Doing this does a SONAME bump of the
libzfs and libzpool libraries. This is particularly important on Gentoo
because a SONAME bump enables portage to retain the older libraries
until any packages that link to them are rebuilt. The main example of
this is GRUB2's grub2-mkconfig, which will break unless it is rebuilt
against the new libraries.
Signed-off-by: Richard Yao <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Issue #1751
Diffstat (limited to 'rpm')
-rw-r--r-- | rpm/generic/zfs.spec.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpm/generic/zfs.spec.in b/rpm/generic/zfs.spec.in index 079712479..a836a5f5f 100644 --- a/rpm/generic/zfs.spec.in +++ b/rpm/generic/zfs.spec.in @@ -131,7 +131,7 @@ exit 0 %doc OPENSOLARIS.LICENSE README.markdown %{_sbindir}/* %{_bindir}/* -%{_libdir}/*.so.1* +%{_libdir}/*.so.* %{_mandir}/man1/* %{_mandir}/man5/* %{_mandir}/man8/* |