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:13:27 +0100 |
| commit | 0215336cf58a5a6460b8d7a31301928a4116a2f0 (patch) | |
| tree | e769f8fdcaf80e8419196a106d2803b34435fd52 /eclass/cmake.eclass | |
| parent | 1fd9b8d6c9103aa774f98a5c0c16c94fee7c99b3 (diff) | |
| download | kde-0215336cf58a5a6460b8d7a31301928a4116a2f0.tar.gz kde-0215336cf58a5a6460b8d7a31301928a4116a2f0.tar.bz2 kde-0215336cf58a5a6460b8d7a31301928a4116a2f0.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 bd784011639..1d1e701a6cb 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) |
