Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/firefox/
Date: Sun, 23 Sep 2018 11:33:00
Message-Id: 1537702369.3dae3ce96ca7551c241d05236d8af7c66eb0bd2f.whissi@gentoo
1 commit: 3dae3ce96ca7551c241d05236d8af7c66eb0bd2f
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 23 11:32:36 2018 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 23 11:32:49 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3dae3ce9
7
8 www-client/firefox: add information about TERM to output (build.log)
9
10 Package-Manager: Portage-2.3.49, Repoman-2.3.10
11
12 www-client/firefox/firefox-60.2.1.ebuild | 8 ++++++++
13 www-client/firefox/firefox-62.0.2.ebuild | 8 ++++++++
14 2 files changed, 16 insertions(+)
15
16 diff --git a/www-client/firefox/firefox-60.2.1.ebuild b/www-client/firefox/firefox-60.2.1.ebuild
17 index ef8d57e983f..94ea29cb744 100644
18 --- a/www-client/firefox/firefox-60.2.1.ebuild
19 +++ b/www-client/firefox/firefox-60.2.1.ebuild
20 @@ -189,6 +189,14 @@ src_configure() {
21 # get your own set of keys.
22 _google_api_key=AIzaSyDEAOvatFo0eTgsV_ZlEzx0ObmepsMzfAc
23
24 + # Add information about TERM to output (build.log) to aid debugging
25 + # blessings problems
26 + if [[ -n "${TERM}" ]] ; then
27 + einfo "TERM is set to: \"${TERM}\""
28 + else
29 + einfo "TERM is unset."
30 + fi
31 +
32 ####################################
33 #
34 # mozconfig, CFLAGS and CXXFLAGS setup
35
36 diff --git a/www-client/firefox/firefox-62.0.2.ebuild b/www-client/firefox/firefox-62.0.2.ebuild
37 index 778dbe170f9..398628a49d7 100644
38 --- a/www-client/firefox/firefox-62.0.2.ebuild
39 +++ b/www-client/firefox/firefox-62.0.2.ebuild
40 @@ -248,6 +248,14 @@ src_configure() {
41 # get your own set of keys.
42 _google_api_key=AIzaSyDEAOvatFo0eTgsV_ZlEzx0ObmepsMzfAc
43
44 + # Add information about TERM to output (build.log) to aid debugging
45 + # blessings problems
46 + if [[ -n "${TERM}" ]] ; then
47 + einfo "TERM is set to: \"${TERM}\""
48 + else
49 + einfo "TERM is unset."
50 + fi
51 +
52 if use clang && ! tc-is-clang ; then
53 # Force clang
54 einfo "Enforcing the use of clang due to USE=clang ..."