Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Sun, 05 Jan 2020 14:20:04
Message-Id: 1578233989.a17850c8167ccda5b81612e349becc0211e14acb.asturm@gentoo
1 commit: a17850c8167ccda5b81612e349becc0211e14acb
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 5 14:13:27 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 5 14:19:49 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a17850c8
7
8 cmake.eclass: Fix CMAKE_VERBOSE logic
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 eclass/cmake.eclass | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/eclass/cmake.eclass b/eclass/cmake.eclass
16 index 62c2e9ae1f4..85cd9a5529f 100644
17 --- a/eclass/cmake.eclass
18 +++ b/eclass/cmake.eclass
19 @@ -569,8 +569,8 @@ cmake_build() {
20 emake)
21 [[ -e Makefile ]] || die "Makefile not found. Error during configure stage."
22 case ${CMAKE_VERBOSE} in
23 - OFF) emake VERBOSE=1 "$@" ;;
24 - *) emake "$@" ;;
25 + OFF) emake "$@" ;;
26 + *) emake VERBOSE=1 "$@" ;;
27 esac
28 ;;
29 ninja)