diff options
author | Sam James <sam@gentoo.org> | 2021-03-16 21:47:52 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-03-16 21:47:52 +0000 |
commit | de36c6a9d563fc70196bd620bd2113c27f38559e (patch) | |
tree | b4b4f3bae9f33899ed41f4313dd6bfed5ad4adbd /dev-libs/hyphen | |
parent | net-analyzer/snort: forcefully remove .la files (diff) | |
download | gentoo-de36c6a9d563fc70196bd620bd2113c27f38559e.tar.gz gentoo-de36c6a9d563fc70196bd620bd2113c27f38559e.tar.bz2 gentoo-de36c6a9d563fc70196bd620bd2113c27f38559e.zip |
dev-libs/hyphen: forcefully delete .la file
Fixes build with slibtool.
Closes: https://bugs.gentoo.org/775587
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-libs/hyphen')
-rw-r--r-- | dev-libs/hyphen/hyphen-2.8.8-r1.ebuild | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/dev-libs/hyphen/hyphen-2.8.8-r1.ebuild b/dev-libs/hyphen/hyphen-2.8.8-r1.ebuild index 3284a42cf6a1..bb3e8f04d3fe 100644 --- a/dev-libs/hyphen/hyphen-2.8.8-r1.ebuild +++ b/dev-libs/hyphen/hyphen-2.8.8-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -29,5 +29,6 @@ src_install() { dodoc doc/*.pdf rm -r "${ED}"/usr/share/hyphen || die - rm "${ED}"/usr/lib*/libhyphen.la || die + # bug #775587 + rm -f "${ED}"/usr/lib*/libhyphen.la || die } |