commit: ff578065b1b1a4b3aa3c7baf9e5dd8fd779b394b
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 2 16:19:58 2019 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Oct 2 17:04:09 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff578065
sys-devel/lld: Also strip headers in 10+
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
sys-devel/lld/lld-10.0.0.9999.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/sys-devel/lld/lld-10.0.0.9999.ebuild
b/sys-devel/lld/lld-10.0.0.9999.ebuild
index 6125066285f..9d1c88d828d 100644
--- a/sys-devel/lld/lld-10.0.0.9999.ebuild
+++ b/sys-devel/lld/lld-10.0.0.9999.ebuild
@@ -76,5 +76,6 @@ src_test() {
src_install() {
cmake-utils_src_install
- find "${D}" -name '*.a' -delete || die
+ # LLD has no shared libraries, so strip it all for the time being
+ rm -r "${ED}"/usr/{include,lib*} || die
}