diff options
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/cmake.eclass | 4 |
1 files 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) |