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 5D63D138359 for ; Tue, 29 Sep 2020 10:26:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 70487E083E; Tue, 29 Sep 2020 10:26:55 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 51354E083E for ; Tue, 29 Sep 2020 10:26:55 +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 20B3C33BE0D for ; Tue, 29 Sep 2020 10:26:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7C636376 for ; Tue, 29 Sep 2020 10:26:52 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1601375101.e10c564a25c1cdb4c0feee0523ea7f0d1ca26102.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libsearpc/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libsearpc/libsearpc-3.2.0-r1.ebuild X-VCS-Directories: net-libs/libsearpc/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: e10c564a25c1cdb4c0feee0523ea7f0d1ca26102 X-VCS-Branch: master Date: Tue, 29 Sep 2020 10:26:52 +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: a85343bb-ac31-4639-86c5-ea198553799d X-Archives-Hash: c56a2606073e00d22b8aa46eb8d95c41 commit: e10c564a25c1cdb4c0feee0523ea7f0d1ca26102 Author: Jakov Smolic sartura hr> AuthorDate: Mon Aug 31 06:44:24 2020 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Tue Sep 29 10:25:01 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e10c564a net-libs/libsearpc: do not install .a files Closes: https://bugs.gentoo.org/739708 Package-Manager: Portage-3.0.3, Repoman-3.0.0 Signed-off-by: Jakov Smolic sartura.hr> Closes: https://github.com/gentoo/gentoo/pull/17342 Signed-off-by: Joonas Niilola gentoo.org> net-libs/libsearpc/libsearpc-3.2.0-r1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-libs/libsearpc/libsearpc-3.2.0-r1.ebuild b/net-libs/libsearpc/libsearpc-3.2.0-r1.ebuild index 69f45d332ed..ba693b98ae0 100644 --- a/net-libs/libsearpc/libsearpc-3.2.0-r1.ebuild +++ b/net-libs/libsearpc/libsearpc-3.2.0-r1.ebuild @@ -35,6 +35,6 @@ src_prepare() { src_install() { default - # Remove unnecessary .la files, as recommended by ltprune.eclass - find "${ED}" -name '*.la' -delete || die + # Remove unnecessary .la and .a files, as recommended by ltprune.eclass + find "${ED}" -name '*.la' -o -name '*.a' -delete || die }