diff options
author | 2020-01-05 11:00:40 +0100 | |
---|---|---|
committer | 2020-01-05 11:01:43 +0100 | |
commit | d0b6ff625c10498e12c9a9dc129ab5b4f368164f (patch) | |
tree | 491b336f988948aa148a027386a6e1332fa38e05 | |
parent | dev-ruby/activesupport: remove vulnerable versions (diff) | |
download | gentoo-d0b6ff625c10498e12c9a9dc129ab5b4f368164f.tar.gz gentoo-d0b6ff625c10498e12c9a9dc129ab5b4f368164f.tar.bz2 gentoo-d0b6ff625c10498e12c9a9dc129ab5b4f368164f.zip |
cmake.eclass: Fix fatal typo
Thanks-to: Tomas Mozes <hydrapolic@gmail.com>
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r-- | eclass/cmake.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/cmake.eclass b/eclass/cmake.eclass index b2b9ae87961..f7887d0e26f 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." |