Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/fstrm/
Date: Mon, 12 Oct 2020 09:06:19
Message-Id: 1602493556.9143088f878e27ad6482616f4254f0755c008632.juippis@gentoo
1 commit: 9143088f878e27ad6482616f4254f0755c008632
2 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 12 08:01:46 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 12 09:05:56 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9143088f
7
8 dev-libs/fstrm: add missing die to 0.6.0
9
10 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
11
12 dev-libs/fstrm/fstrm-0.6.0.ebuild | 3 ++-
13 1 file changed, 2 insertions(+), 1 deletion(-)
14
15 diff --git a/dev-libs/fstrm/fstrm-0.6.0.ebuild b/dev-libs/fstrm/fstrm-0.6.0.ebuild
16 index 57b1a4d205d..806ef1cc0cf 100644
17 --- a/dev-libs/fstrm/fstrm-0.6.0.ebuild
18 +++ b/dev-libs/fstrm/fstrm-0.6.0.ebuild
19 @@ -2,6 +2,7 @@
20 # Distributed under the terms of the GNU General Public License v2
21
22 EAPI=7
23 +
24 inherit autotools multilib-minimal
25
26 DESCRIPTION="Frame Streams implementation in C"
27 @@ -31,5 +32,5 @@ multilib_src_configure() {
28
29 multilib_src_install_all() {
30 default
31 - find "${ED}" -name '*.la' -delete
32 + find "${ED}" -name '*.la' -delete || die
33 }