Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Wed, 29 Aug 2018 15:22:19
Message-Id: 1535555910.570116e5ff38141c0326686e71d912f5aebe4ff5.mgorny@gentoo
1 commit: 570116e5ff38141c0326686e71d912f5aebe4ff5
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 29 15:18:30 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 29 15:18:30 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=570116e5
7
8 waf-utils.eclass: Fix handling WAF_VERBOSE=OFF
9
10 Patch-by: Joke Junkie
11
12 eclass/waf-utils.eclass | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/eclass/waf-utils.eclass b/eclass/waf-utils.eclass
16 index d3e52fc463d..4d02483a927 100644
17 --- a/eclass/waf-utils.eclass
18 +++ b/eclass/waf-utils.eclass
19 @@ -99,7 +99,7 @@ waf-utils_src_configure() {
20 waf-utils_src_compile() {
21 debug-print-function ${FUNCNAME} "$@"
22 local _mywafconfig
23 - [[ "${WAF_VERBOSE}" ]] && _mywafconfig="--verbose"
24 + [[ ${WAF_VERBOSE} == ON ]] && _mywafconfig="--verbose"
25
26 local jobs="--jobs=$(makeopts_jobs)"
27 echo "\"${WAF_BINARY}\" build ${_mywafconfig} ${jobs}"