diff options
author | Sam James <sam@gentoo.org> | 2021-03-25 19:08:10 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-03-25 19:08:22 +0000 |
commit | 483ba0aca612dbb21a41324551ab696d2a94c13c (patch) | |
tree | 46fd50190103896d5bc75bdfca6700bbd9edcf0a /media-libs/spandsp | |
parent | sys-devel/slibtool: ~x64-macos keyworded (diff) | |
download | gentoo-483ba0aca612dbb21a41324551ab696d2a94c13c.tar.gz gentoo-483ba0aca612dbb21a41324551ab696d2a94c13c.tar.bz2 gentoo-483ba0aca612dbb21a41324551ab696d2a94c13c.zip |
media-libs/spandsp: fix removal of .la
Closes: https://bugs.gentoo.org/716260
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-libs/spandsp')
-rw-r--r-- | media-libs/spandsp/spandsp-0.0.6.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/media-libs/spandsp/spandsp-0.0.6.ebuild b/media-libs/spandsp/spandsp-0.0.6.ebuild index 26ce3e472a7c..f5989411a1b1 100644 --- a/media-libs/spandsp/spandsp-0.0.6.ebuild +++ b/media-libs/spandsp/spandsp-0.0.6.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="5" @@ -57,7 +57,7 @@ src_install() { if ! use static-libs; then # remove useless la file when not installing static lib - rm "${D}"/usr/$(get_libdir)/lib${PN}.la || die "rm failed" + find "${ED}" -name '*.la' -delete || die fi if use doc; then |