From: Andreas Sturmlechner Date: Sun, 5 Jan 2020 10:00:40 +0000 (+0100) Subject: cmake.eclass: Fix fatal typo X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=d0b6ff625c10498e12c9a9dc129ab5b4f368164f;p=gentoo.git cmake.eclass: Fix fatal typo Thanks-to: Tomas Mozes Signed-off-by: Andreas Sturmlechner --- diff --git a/eclass/cmake.eclass b/eclass/cmake.eclass index b2b9ae879613..f7887d0e26ff 100644 --- a/eclass/cmake.eclass +++ b/eclass/cmake.eclass @@ -567,7 +567,7 @@ cmake_build() { emake) [[ -e Makefile ]] || die "Makefile not found. Error during configure stage." [[ "${CMAKE_VERBOSE}" != "OFF" ]] && local verbosity="VERBOSE=1" - emake "${verbosity} ""$@" + emake "${verbosity} "$@" ;; ninja) [[ -e build.ninja ]] || die "build.ninja not found. Error during configure stage."