Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/libunwind/
Date: Thu, 02 Apr 2020 06:29:50
Message-Id: 1585808978.02d38c549998b3416f1242c58c44f2800b2eccb7.slyfox@gentoo
1 commit: 02d38c549998b3416f1242c58c44f2800b2eccb7
2 Author: Arfrever Frehtes Taifersar Arahesis <Arfrever <AT> Apache <DOT> Org>
3 AuthorDate: Sun Sep 1 05:02:38 2019 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 2 06:29:38 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02d38c54
7
8 sys-libs/libunwind: Unconditionally drop *.la files.
9
10 *.pc files are installed.
11
12 Closes: https://bugs.gentoo.org/693250
13 Signed-off-by: Arfrever Frehtes Taifersar Arahesis <Arfrever <AT> Apache.Org>
14 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
15
16 sys-libs/libunwind/libunwind-1.4.0.ebuild | 5 ++---
17 1 file changed, 2 insertions(+), 3 deletions(-)
18
19 diff --git a/sys-libs/libunwind/libunwind-1.4.0.ebuild b/sys-libs/libunwind/libunwind-1.4.0.ebuild
20 index 9ca0fb123dc..00f1da15174 100644
21 --- a/sys-libs/libunwind/libunwind-1.4.0.ebuild
22 +++ b/sys-libs/libunwind/libunwind-1.4.0.ebuild
23 @@ -97,7 +97,6 @@ multilib_src_test() {
24 SANDBOX_ON=0 emake check
25 }
26
27 -multilib_src_install() {
28 - default
29 - use static-libs || find "${ED}"/usr -name 'libunwind*.la' -delete
30 +multilib_src_install_all() {
31 + find "${D}" -name "*.la" -type f -delete || die
32 }