Skip to content

Commit

Permalink
waf-utils.eclass: Fix handling WAF_VERBOSE=OFF
Browse files Browse the repository at this point in the history
Patch-by: Joke Junkie
  • Loading branch information
mgorny committed Aug 29, 2018
1 parent 30e10c1 commit 570116e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eclass/waf-utils.eclass
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down

0 comments on commit 570116e

Please sign in to comment.