Gentoo Archives: gentoo-commits

From: Stephan Hartmann <sultan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libvpx/
Date: Sun, 01 Nov 2020 16:03:16
Message-Id: 1604246539.d7fb59cb2cd44b9e0b0eb50cc2f7491202e0a204.sultan@gentoo
1 commit: d7fb59cb2cd44b9e0b0eb50cc2f7491202e0a204
2 Author: Stephan Hartmann <sultan <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 1 16:01:20 2020 +0000
4 Commit: Stephan Hartmann <sultan <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 1 16:02:19 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7fb59cb
7
8 media-libs/libvpx: disable stripping for static libraries
9
10 Closes: https://bugs.gentoo.org/752057
11 Package-Manager: Portage-3.0.8, Repoman-3.0.2
12 Signed-off-by: Stephan Hartmann <sultan <AT> gentoo.org>
13
14 media-libs/libvpx/libvpx-1.9.0.ebuild | 4 +++-
15 1 file changed, 3 insertions(+), 1 deletion(-)
16
17 diff --git a/media-libs/libvpx/libvpx-1.9.0.ebuild b/media-libs/libvpx/libvpx-1.9.0.ebuild
18 index a437b47fa4f..7263b998acd 100644
19 --- a/media-libs/libvpx/libvpx-1.9.0.ebuild
20 +++ b/media-libs/libvpx/libvpx-1.9.0.ebuild
21 @@ -104,7 +104,9 @@ multilib_src_configure() {
22
23 multilib_src_compile() {
24 # build verbose by default and do not build examples that will not be installed
25 - emake verbose=yes GEN_EXAMPLES=
26 + # disable stripping of debug info, bug #752057
27 + # (only works as long as upstream does not use non-gnu strip)
28 + emake verbose=yes GEN_EXAMPLES= HAVE_GNU_STRIP=no
29 }
30
31 multilib_src_test() {