From: Lars Wendler Date: Wed, 13 Nov 2019 13:13:52 +0000 (+0100) Subject: sys-apps/acl: Replaced ltprune eclass with find call X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=9f2bd962308989b6490c801501c402b353351aa2;p=gentoo.git sys-apps/acl: Replaced ltprune eclass with find call Package-Manager: Portage-2.3.79, Repoman-2.3.18 Signed-off-by: Lars Wendler --- diff --git a/sys-apps/acl/acl-2.2.53.ebuild b/sys-apps/acl/acl-2.2.53.ebuild index 0ba85a555158..21cf72b72685 100644 --- a/sys-apps/acl/acl-2.2.53.ebuild +++ b/sys-apps/acl/acl-2.2.53.ebuild @@ -3,7 +3,7 @@ EAPI="6" -inherit flag-o-matic libtool ltprune toolchain-funcs multilib-minimal usr-ldscript +inherit flag-o-matic libtool toolchain-funcs multilib-minimal usr-ldscript DESCRIPTION="access control list utilities, libraries and headers" HOMEPAGE="https://savannah.nongnu.org/projects/acl" @@ -49,5 +49,7 @@ multilib_src_install() { } multilib_src_install_all() { - use static-libs || prune_libtool_files --all + if ! use static-libs ; then + find "${ED}" -type f -name "*.la" -delete || die + fi }