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 10:44:03
Message-Id: 1578221030.e38b524a72cce9cd15eb171592e23516632081b0.asturm@gentoo
1 commit: e38b524a72cce9cd15eb171592e23516632081b0
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 5 10:43:29 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 5 10:43:50 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e38b524a
7
8 cmake.eclass: Fix the fatal typo fix
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 eclass/cmake.eclass | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/eclass/cmake.eclass b/eclass/cmake.eclass
16 index f7887d0e26f..c91e2dd4ada 100644
17 --- a/eclass/cmake.eclass
18 +++ b/eclass/cmake.eclass
19 @@ -567,7 +567,7 @@ cmake_build() {
20 emake)
21 [[ -e Makefile ]] || die "Makefile not found. Error during configure stage."
22 [[ "${CMAKE_VERBOSE}" != "OFF" ]] && local verbosity="VERBOSE=1"
23 - emake "${verbosity} "$@"
24 + emake "${verbosity}" "$@"
25 ;;
26 ninja)
27 [[ -e build.ninja ]] || die "build.ninja not found. Error during configure stage."