From a17850c8167ccda5b81612e349becc0211e14acb Mon Sep 17 00:00:00 2001 From: Andreas Sturmlechner Date: Sun, 5 Jan 2020 15:13:27 +0100 Subject: [PATCH] cmake.eclass: Fix CMAKE_VERBOSE logic Signed-off-by: Andreas Sturmlechner --- eclass/cmake.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.26.2