diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-01-05 11:43:29 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-01-05 11:43:50 +0100 |
commit | e38b524a72cce9cd15eb171592e23516632081b0 (patch) | |
tree | 43bf026779a6c4303b3d4187d704b88b230ef602 /eclass/cmake.eclass | |
parent | gnome-base/gnome-menus: bump to 3.32.0 (diff) | |
download | gentoo-e38b524a72cce9cd15eb171592e23516632081b0.tar.gz gentoo-e38b524a72cce9cd15eb171592e23516632081b0.tar.bz2 gentoo-e38b524a72cce9cd15eb171592e23516632081b0.zip |
cmake.eclass: Fix the fatal typo fix
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'eclass/cmake.eclass')
-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 f7887d0e26ff..c91e2dd4ada2 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." |