commit: eb65d74e2ad8428672c7e4d944beaa483a1df6d1 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sun Mar 21 02:36:03 2021 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Tue Mar 30 18:14:53 2021 +0000 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=eb65d74e
ebuild-writing/common-mistakes: s/cmake-utils/cmake/ Signed-off-by: Sam James <sam <AT> gentoo.org> Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> ebuild-writing/common-mistakes/text.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ebuild-writing/common-mistakes/text.xml b/ebuild-writing/common-mistakes/text.xml index 9ff6608..fba6bac 100644 --- a/ebuild-writing/common-mistakes/text.xml +++ b/ebuild-writing/common-mistakes/text.xml @@ -83,11 +83,11 @@ There are several ways to fix non-verbose build logs depending on the build syst </p> <ul> - <li>For <c>cmake</c> based build systems it should be sufficient that - the ebuild calls cmake-utils_src_compile which picks up the cmake-utils.eclass + <li>For <c>cmake</c>-based build systems, it should be sufficient that + the ebuild calls cmake_src_compile which picks up the cmake.eclass variable 'CMAKE_VERBOSE=1' by default. If you call emake directly for whatever reason, you can do 'emake VERBOSE=1' (note that - cmake-utils_src_compile takes arguments as well which are passed to make).</li> + cmake_src_compile takes arguments as well which are passed to make).</li> <li>For <c>autotools</c> based build systems you can pass '--disable-silent-rules' to econf, or use EAPI 5 where that argument is
