diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-01-05 15:13:27 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-01-05 15:19:49 +0100 |
commit | a17850c8167ccda5b81612e349becc0211e14acb (patch) | |
tree | c08d473b4cfb0da9ad9f4841e8675e5cd0e0d97b /eclass/cmake.eclass | |
parent | net-misc/mosh: add myself as maintainer (diff) | |
download | gentoo-a17850c8167ccda5b81612e349becc0211e14acb.tar.gz gentoo-a17850c8167ccda5b81612e349becc0211e14acb.tar.bz2 gentoo-a17850c8167ccda5b81612e349becc0211e14acb.zip |
cmake.eclass: Fix CMAKE_VERBOSE logic
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'eclass/cmake.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) |