diff options
author | Mike Gilbert <floppym@gentoo.org> | 2021-10-07 10:48:53 -0400 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2021-10-07 10:48:53 -0400 |
commit | f15136a2f35d977155da3f9e01fdf5678fea5408 (patch) | |
tree | 214b74e190c7ac65a31ee27468d0fee937283f1e /sys-libs | |
parent | dev-db/pgbouncer: Bump to 1.16.0 (diff) | |
download | gentoo-f15136a2f35d977155da3f9e01fdf5678fea5408.tar.gz gentoo-f15136a2f35d977155da3f9e01fdf5678fea5408.tar.bz2 gentoo-f15136a2f35d977155da3f9e01fdf5678fea5408.zip |
sys-libs/zlib: fix install with slibtool
Closes: https://bugs.gentoo.org/816756
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/zlib/zlib-1.2.11-r4.ebuild | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys-libs/zlib/zlib-1.2.11-r4.ebuild b/sys-libs/zlib/zlib-1.2.11-r4.ebuild index 6af7187084da..bc2fe9834ee2 100644 --- a/sys-libs/zlib/zlib-1.2.11-r4.ebuild +++ b/sys-libs/zlib/zlib-1.2.11-r4.ebuild @@ -150,7 +150,9 @@ multilib_src_install() { fi if use minizip; then - rm "${ED}"/usr/$(get_libdir)/libminizip.la || die + # This might not exist if slibtool is used. + # https://bugs.gentoo.org/816756 + rm -f "${ED}"/usr/$(get_libdir)/libminizip.la || die fi if ! use static-libs ; then |