Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/lld/
Date: Wed, 02 Oct 2019 17:04:18
Message-Id: 1570035849.ff578065b1b1a4b3aa3c7baf9e5dd8fd779b394b.mgorny@gentoo
1 commit: ff578065b1b1a4b3aa3c7baf9e5dd8fd779b394b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 2 16:19:58 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 2 17:04:09 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff578065
7
8 sys-devel/lld: Also strip headers in 10+
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 sys-devel/lld/lld-10.0.0.9999.ebuild | 3 ++-
13 1 file changed, 2 insertions(+), 1 deletion(-)
14
15 diff --git a/sys-devel/lld/lld-10.0.0.9999.ebuild b/sys-devel/lld/lld-10.0.0.9999.ebuild
16 index 6125066285f..9d1c88d828d 100644
17 --- a/sys-devel/lld/lld-10.0.0.9999.ebuild
18 +++ b/sys-devel/lld/lld-10.0.0.9999.ebuild
19 @@ -76,5 +76,6 @@ src_test() {
20
21 src_install() {
22 cmake-utils_src_install
23 - find "${D}" -name '*.a' -delete || die
24 + # LLD has no shared libraries, so strip it all for the time being
25 + rm -r "${ED}"/usr/{include,lib*} || die
26 }