Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/libva-compat/
Date: Thu, 01 Apr 2021 00:43:56
Message-Id: 1617237805.c0fb76019221b55b7c6fa132a2daa4d2aad07013.sam@gentoo
1 commit: c0fb76019221b55b7c6fa132a2daa4d2aad07013
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 1 00:34:54 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 1 00:43:25 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0fb7601
7
8 x11-libs/libva-compat: fix libtool file removal (for slibtool)
9
10 slibtool doesn't produce these files at all, so we can't
11 delete them in that case.
12
13 Closes: https://bugs.gentoo.org/779202
14 Signed-off-by: Sam James <sam <AT> gentoo.org>
15
16 x11-libs/libva-compat/libva-compat-1.8.3.ebuild | 4 ++--
17 1 file changed, 2 insertions(+), 2 deletions(-)
18
19 diff --git a/x11-libs/libva-compat/libva-compat-1.8.3.ebuild b/x11-libs/libva-compat/libva-compat-1.8.3.ebuild
20 index 5b82b4eb887..31cdf24dbf5 100644
21 --- a/x11-libs/libva-compat/libva-compat-1.8.3.ebuild
22 +++ b/x11-libs/libva-compat/libva-compat-1.8.3.ebuild
23 @@ -1,4 +1,4 @@
24 -# Copyright 1999-2019 Gentoo Authors
25 +# Copyright 1999-2021 Gentoo Authors
26 # Distributed under the terms of the GNU General Public License v2
27
28 EAPI=7
29 @@ -68,5 +68,5 @@ multilib_src_configure() {
30
31 multilib_src_install() {
32 emake -C va DESTDIR="${D}" install-libLTLIBRARIES
33 - rm -v "${ED}"/usr/$(get_libdir)/*.{la,so} || die
34 + rm -vf "${ED}"/usr/$(get_libdir)/*.{la,so} || die
35 }