diff options
author | Marty E. Plummer <hanetzer@protonmail.com> | 2018-01-07 21:21:15 -0600 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2018-01-08 09:08:20 +0100 |
commit | 84c29736fc5fbe494bd356a053f192e712cb72a2 (patch) | |
tree | c7472ff537d3a3760fd813743d706433251219f3 /media-libs | |
parent | xfce-base/libxfce4ui: stable 4.13.4 for ia64, bug #643074 (diff) | |
download | gentoo-84c29736fc5fbe494bd356a053f192e712cb72a2.tar.gz gentoo-84c29736fc5fbe494bd356a053f192e712cb72a2.tar.bz2 gentoo-84c29736fc5fbe494bd356a053f192e712cb72a2.zip |
media-libs/libogg: find and remove '*.a' not required
Not sure if this was changed in a previous version of libogg, but
libogg-1.3.3 correctly respects --enable-static/--disable-static, and
does not produce a static library when built with USE=-static-libs.
The find "${ED}" -name '*.a' -delete || die line also kills off
libogg.dll.a, which is needed for shared linking on mingw-w64, so
it should be removed as uneeded and harmful.
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Signed-off-by: Marty E. Plummer <hanetzer@protonmail.com>
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/libogg/libogg-1.3.3.ebuild | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/media-libs/libogg/libogg-1.3.3.ebuild b/media-libs/libogg/libogg-1.3.3.ebuild index 27c0175879b6..db5bd9b334db 100644 --- a/media-libs/libogg/libogg-1.3.3.ebuild +++ b/media-libs/libogg/libogg-1.3.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -30,7 +30,4 @@ multilib_src_configure() { multilib_src_install_all() { einstalldocs find "${ED}" -name "*.la" -delete || die - if ! use static-libs ; then - find "${ED}" -name "*.a" -delete || die - fi } |