From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7445C13997D for ; Wed, 13 Nov 2019 13:16:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9A827E082B; Wed, 13 Nov 2019 13:16:20 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8331BE082B for ; Wed, 13 Nov 2019 13:16:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 81DF534CD8C for ; Wed, 13 Nov 2019 13:16:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CDFE18AF for ; Wed, 13 Nov 2019 13:16:15 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1573650968.9f2bd962308989b6490c801501c402b353351aa2.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/acl/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/acl/acl-2.2.53.ebuild X-VCS-Directories: sys-apps/acl/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 9f2bd962308989b6490c801501c402b353351aa2 X-VCS-Branch: master Date: Wed, 13 Nov 2019 13:16:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: fa9dbeb1-f1a5-4245-b3f3-e800935bcfcc X-Archives-Hash: 5ea58787577afb647a033070689367a3 commit: 9f2bd962308989b6490c801501c402b353351aa2 Author: Lars Wendler gentoo org> AuthorDate: Wed Nov 13 13:13:52 2019 +0000 Commit: Lars Wendler gentoo org> CommitDate: Wed Nov 13 13:16:08 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f2bd962 sys-apps/acl: Replaced ltprune eclass with find call Package-Manager: Portage-2.3.79, Repoman-2.3.18 Signed-off-by: Lars Wendler gentoo.org> sys-apps/acl/acl-2.2.53.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sys-apps/acl/acl-2.2.53.ebuild b/sys-apps/acl/acl-2.2.53.ebuild index 0ba85a55515..21cf72b7268 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 }