diff options
author | Sam James <sam@gentoo.org> | 2021-04-01 00:34:54 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-04-01 00:43:25 +0000 |
commit | c0fb76019221b55b7c6fa132a2daa4d2aad07013 (patch) | |
tree | ee42b108d7d13588b180723212c50551a73ec4a2 /x11-libs/libva-compat | |
parent | dev-libs/mimetic: fix removal of libtool files (diff) | |
download | gentoo-c0fb76019221b55b7c6fa132a2daa4d2aad07013.tar.gz gentoo-c0fb76019221b55b7c6fa132a2daa4d2aad07013.tar.bz2 gentoo-c0fb76019221b55b7c6fa132a2daa4d2aad07013.zip |
x11-libs/libva-compat: fix libtool file removal (for slibtool)
slibtool doesn't produce these files at all, so we can't
delete them in that case.
Closes: https://bugs.gentoo.org/779202
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'x11-libs/libva-compat')
-rw-r--r-- | x11-libs/libva-compat/libva-compat-1.8.3.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11-libs/libva-compat/libva-compat-1.8.3.ebuild b/x11-libs/libva-compat/libva-compat-1.8.3.ebuild index 5b82b4eb8871..31cdf24dbf51 100644 --- a/x11-libs/libva-compat/libva-compat-1.8.3.ebuild +++ b/x11-libs/libva-compat/libva-compat-1.8.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -68,5 +68,5 @@ multilib_src_configure() { multilib_src_install() { emake -C va DESTDIR="${D}" install-libLTLIBRARIES - rm -v "${ED}"/usr/$(get_libdir)/*.{la,so} || die + rm -vf "${ED}"/usr/$(get_libdir)/*.{la,so} || die } |