commit: d7fb59cb2cd44b9e0b0eb50cc2f7491202e0a204 Author: Stephan Hartmann <sultan <AT> gentoo <DOT> org> AuthorDate: Sun Nov 1 16:01:20 2020 +0000 Commit: Stephan Hartmann <sultan <AT> gentoo <DOT> org> CommitDate: Sun Nov 1 16:02:19 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7fb59cb
media-libs/libvpx: disable stripping for static libraries Closes: https://bugs.gentoo.org/752057 Package-Manager: Portage-3.0.8, Repoman-3.0.2 Signed-off-by: Stephan Hartmann <sultan <AT> gentoo.org> media-libs/libvpx/libvpx-1.9.0.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/media-libs/libvpx/libvpx-1.9.0.ebuild b/media-libs/libvpx/libvpx-1.9.0.ebuild index a437b47fa4f..7263b998acd 100644 --- a/media-libs/libvpx/libvpx-1.9.0.ebuild +++ b/media-libs/libvpx/libvpx-1.9.0.ebuild @@ -104,7 +104,9 @@ multilib_src_configure() { multilib_src_compile() { # build verbose by default and do not build examples that will not be installed - emake verbose=yes GEN_EXAMPLES= + # disable stripping of debug info, bug #752057 + # (only works as long as upstream does not use non-gnu strip) + emake verbose=yes GEN_EXAMPLES= HAVE_GNU_STRIP=no } multilib_src_test() {
