summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2018-08-29 17:18:30 +0200
committerMichał Górny <mgorny@gentoo.org>2018-08-29 17:18:30 +0200
commit570116e5ff38141c0326686e71d912f5aebe4ff5 (patch)
tree831ddc778e3ef95f35511380b7434f845e987e80
parentsci-physics/root: add back patch for bug 653124 (diff)
downloadgentoo-570116e5ff38141c0326686e71d912f5aebe4ff5.tar.gz
gentoo-570116e5ff38141c0326686e71d912f5aebe4ff5.tar.bz2
gentoo-570116e5ff38141c0326686e71d912f5aebe4ff5.zip
waf-utils.eclass: Fix handling WAF_VERBOSE=OFF
Patch-by: Joke Junkie
-rw-r--r--eclass/waf-utils.eclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/waf-utils.eclass b/eclass/waf-utils.eclass
index d3e52fc463dd..4d02483a927e 100644
--- a/eclass/waf-utils.eclass
+++ b/eclass/waf-utils.eclass
@@ -99,7 +99,7 @@ waf-utils_src_configure() {
waf-utils_src_compile() {
debug-print-function ${FUNCNAME} "$@"
local _mywafconfig
- [[ "${WAF_VERBOSE}" ]] && _mywafconfig="--verbose"
+ [[ ${WAF_VERBOSE} == ON ]] && _mywafconfig="--verbose"
local jobs="--jobs=$(makeopts_jobs)"
echo "\"${WAF_BINARY}\" build ${_mywafconfig} ${jobs}"