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 4F5091382C5 for ; Wed, 23 Jun 2021 04:44:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A49BFE0830; Wed, 23 Jun 2021 04:44:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 90A24E0830 for ; Wed, 23 Jun 2021 04:44:30 +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 B275D33FEB6 for ; Wed, 23 Jun 2021 04:44:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4D0F37A0 for ; Wed, 23 Jun 2021 04:44:28 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1624423454.c010009af59f0a3453c3d6249f0eb56e2b113fb6.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libverto/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libverto/libverto-0.3.2.ebuild X-VCS-Directories: dev-libs/libverto/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c010009af59f0a3453c3d6249f0eb56e2b113fb6 X-VCS-Branch: master Date: Wed, 23 Jun 2021 04:44:28 +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: a9db4342-bfd0-4b42-a799-69a2271eecc7 X-Archives-Hash: ca1108724d90b622a59e3ad750f5e215 commit: c010009af59f0a3453c3d6249f0eb56e2b113fb6 Author: Sam James gentoo org> AuthorDate: Wed Jun 23 04:44:14 2021 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jun 23 04:44:14 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c010009a dev-libs/libverto: add || die on find Signed-off-by: Sam James gentoo.org> dev-libs/libverto/libverto-0.3.2.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dev-libs/libverto/libverto-0.3.2.ebuild b/dev-libs/libverto/libverto-0.3.2.ebuild index 6693f45a2c1..8e7b931f663 100644 --- a/dev-libs/libverto/libverto-0.3.2.ebuild +++ b/dev-libs/libverto/libverto-0.3.2.ebuild @@ -44,5 +44,8 @@ multilib_src_configure() { multilib_src_install_all() { default - use static-libs || find "${ED}" -name '*.la' -delete + + if ! use static-libs ; then + find "${ED}" -name '*.la' -delete + fi }