Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: mail-client/thunderbird/
Date: Fri, 02 Oct 2020 19:25:03
Message-Id: 1601666694.32a7f483a65e3e659bc977858d5edea799ab193f.whissi@gentoo
1 commit: 32a7f483a65e3e659bc977858d5edea799ab193f
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 2 19:24:43 2020 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 2 19:24:54 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32a7f483
7
8 mail-client/thunderbird: USE=debug implies --enable-debug-symbols
9
10 Bug: https://bugs.gentoo.org/746131
11 Package-Manager: Portage-3.0.8, Repoman-3.0.1
12 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
13
14 mail-client/thunderbird/thunderbird-78.3.1.ebuild | 8 +-------
15 1 file changed, 1 insertion(+), 7 deletions(-)
16
17 diff --git a/mail-client/thunderbird/thunderbird-78.3.1.ebuild b/mail-client/thunderbird/thunderbird-78.3.1.ebuild
18 index 9590a37ffb3..70e6b9b4825 100644
19 --- a/mail-client/thunderbird/thunderbird-78.3.1.ebuild
20 +++ b/mail-client/thunderbird/thunderbird-78.3.1.ebuild
21 @@ -552,16 +552,10 @@ src_configure() {
22
23 mozconfig_use_enable debug
24 if use debug ; then
25 - if is-flag '-g*' ; then
26 - mozconfig_add_options_ac '+debug' --enable-debug-symbols=$(get-flag '-g*')
27 - else
28 - mozconfig_add_options_ac '+debug' --enable-debug-symbols
29 - fi
30 -
31 mozconfig_add_options_ac '+debug' --disable-optimize
32 else
33 if is-flag '-g*' ; then
34 - mozconfig_add_options_ac '+debug' --enable-debug-symbols=$(get-flag '-g*')
35 + mozconfig_add_options_ac 'from CFLAGS' --enable-debug-symbols=$(get-flag '-g*')
36 else
37 mozconfig_add_options_ac 'Gentoo default' --disable-debug-symbols
38 fi