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 B7E85138359 for ; Fri, 23 Oct 2020 08:06:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C149BE0863; Fri, 23 Oct 2020 08:06:50 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 A4EE6E0863 for ; Fri, 23 Oct 2020 08:06:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 4FD1734087E for ; Fri, 23 Oct 2020 08:06:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C87E03B5 for ; Fri, 23 Oct 2020 08:06:47 +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: <1603440393.37f55a24e3653e6b498c1444d4030f5492fa083e.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/dqlite/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/dqlite/dqlite-1.6.0.ebuild X-VCS-Directories: dev-libs/dqlite/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 37f55a24e3653e6b498c1444d4030f5492fa083e X-VCS-Branch: master Date: Fri, 23 Oct 2020 08:06:47 +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: cc35e93b-c196-425d-a554-81eb175e5bfb X-Archives-Hash: 19e6c696c1b3bb93877ff428bfddc48a commit: 37f55a24e3653e6b498c1444d4030f5492fa083e Author: Joonas Niilola gentoo org> AuthorDate: Fri Oct 23 08:04:50 2020 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Fri Oct 23 08:06:33 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37f55a24 dev-libs/dqlite: don't install .a & .la files Closes: https://bugs.gentoo.org/750809 Signed-off-by: Joonas Niilola gentoo.org> dev-libs/dqlite/dqlite-1.6.0.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-libs/dqlite/dqlite-1.6.0.ebuild b/dev-libs/dqlite/dqlite-1.6.0.ebuild index 0c27bdc0162..b856a1d580b 100644 --- a/dev-libs/dqlite/dqlite-1.6.0.ebuild +++ b/dev-libs/dqlite/dqlite-1.6.0.ebuild @@ -35,3 +35,8 @@ src_configure() { econf "${myeconfargs[@]}" } + +src_install() { + default + find "${D}" -name '*.la' -delete -o -name '*.a' -delete || die +}