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