From: Andreas Sturmlechner Date: Sun, 5 Jan 2020 14:13:27 +0000 (+0100) Subject: cmake.eclass: Fix CMAKE_VERBOSE logic X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=a17850c8167ccda5b81612e349becc0211e14acb;p=gentoo.git cmake.eclass: Fix CMAKE_VERBOSE logic Signed-off-by: Andreas Sturmlechner --- diff --git a/eclass/cmake.eclass b/eclass/cmake.eclass index 62c2e9ae1f46..85cd9a5529fb 100644 --- a/eclass/cmake.eclass +++ b/eclass/cmake.eclass @@ -569,8 +569,8 @@ cmake_build() { emake) [[ -e Makefile ]] || die "Makefile not found. Error during configure stage." case ${CMAKE_VERBOSE} in - OFF) emake VERBOSE=1 "$@" ;; - *) emake "$@" ;; + OFF) emake "$@" ;; + *) emake VERBOSE=1 "$@" ;; esac ;; ninja)