commit: abc9e6e1eb53f9df2085f23c9118119469055b25 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org> AuthorDate: Thu Oct 31 13:28:41 2019 +0000 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org> CommitDate: Thu Oct 31 13:28:41 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abc9e6e1
www-client/firefox: force stderr for einfo in llvm_check_deps() CLoses: https://bugs.gentoo.org/695668 Package-Manager: Portage-2.3.78, Repoman-2.3.17 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org> www-client/firefox/firefox-68.2.0.ebuild | 3 ++- www-client/firefox/firefox-70.0.ebuild | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/www-client/firefox/firefox-68.2.0.ebuild b/www-client/firefox/firefox-68.2.0.ebuild index e3af4ace464..b51a15732d0 100644 --- a/www-client/firefox/firefox-68.2.0.ebuild +++ b/www-client/firefox/firefox-68.2.0.ebuild @@ -213,7 +213,8 @@ llvm_check_deps() { fi fi - einfo "Will use LLVM slot ${LLVM_SLOT}!" + # <EAPI 7 workaround, #695668 + einfo "Will use LLVM slot ${LLVM_SLOT}!" >&2 } pkg_setup() { diff --git a/www-client/firefox/firefox-70.0.ebuild b/www-client/firefox/firefox-70.0.ebuild index 6d26b12d6cf..c4e0acf0788 100644 --- a/www-client/firefox/firefox-70.0.ebuild +++ b/www-client/firefox/firefox-70.0.ebuild @@ -216,7 +216,8 @@ llvm_check_deps() { fi fi - einfo "Will use LLVM slot ${LLVM_SLOT}!" + # <EAPI 7 workaround, #695668 + einfo "Will use LLVM slot ${LLVM_SLOT}!" >&2 } pkg_setup() {
