summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2019-10-02 18:19:58 +0200
committerMichał Górny <mgorny@gentoo.org>2019-10-02 19:04:09 +0200
commitff578065b1b1a4b3aa3c7baf9e5dd8fd779b394b (patch)
tree59979b23788277e59c09b91516084d78096e0e42
parentdev-python/python-swiftclient: remove broken doc build (diff)
downloadgentoo-ff578065.tar.gz
gentoo-ff578065.tar.bz2
gentoo-ff578065.zip
sys-devel/lld: Also strip headers in 10+
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r--sys-devel/lld/lld-10.0.0.9999.ebuild3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys-devel/lld/lld-10.0.0.9999.ebuild b/sys-devel/lld/lld-10.0.0.9999.ebuild
index 6125066285f7..9d1c88d828d3 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
}