Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libsearpc/
Date: Tue, 29 Sep 2020 10:26:56
Message-Id: 1601375101.e10c564a25c1cdb4c0feee0523ea7f0d1ca26102.juippis@gentoo
1 commit: e10c564a25c1cdb4c0feee0523ea7f0d1ca26102
2 Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
3 AuthorDate: Mon Aug 31 06:44:24 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 29 10:25:01 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e10c564a
7
8 net-libs/libsearpc: do not install .a files
9
10 Closes: https://bugs.gentoo.org/739708
11 Package-Manager: Portage-3.0.3, Repoman-3.0.0
12 Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
13 Closes: https://github.com/gentoo/gentoo/pull/17342
14 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
15
16 net-libs/libsearpc/libsearpc-3.2.0-r1.ebuild | 4 ++--
17 1 file changed, 2 insertions(+), 2 deletions(-)
18
19 diff --git a/net-libs/libsearpc/libsearpc-3.2.0-r1.ebuild b/net-libs/libsearpc/libsearpc-3.2.0-r1.ebuild
20 index 69f45d332ed..ba693b98ae0 100644
21 --- a/net-libs/libsearpc/libsearpc-3.2.0-r1.ebuild
22 +++ b/net-libs/libsearpc/libsearpc-3.2.0-r1.ebuild
23 @@ -35,6 +35,6 @@ src_prepare() {
24
25 src_install() {
26 default
27 - # Remove unnecessary .la files, as recommended by ltprune.eclass
28 - find "${ED}" -name '*.la' -delete || die
29 + # Remove unnecessary .la and .a files, as recommended by ltprune.eclass
30 + find "${ED}" -name '*.la' -o -name '*.a' -delete || die
31 }