From mboxrd@z Thu Jan 1 00:00:00 1970
Return-Path:
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
(No client certificate requested)
by finch.gentoo.org (Postfix) with ESMTPS id 6A5A11382C5
for ; Tue, 30 Mar 2021 18:15:53 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
by pigeon.gentoo.org (Postfix) with SMTP id C2F0BE0BBE;
Tue, 30 Mar 2021 18:15:52 +0000 (UTC)
Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4])
(using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
(No client certificate requested)
by pigeon.gentoo.org (Postfix) with ESMTPS id AD03BE0BBE
for ; Tue, 30 Mar 2021 18:15:52 +0000 (UTC)
Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84])
(using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
(No client certificate requested)
by smtp.gentoo.org (Postfix) with ESMTPS id E51BE340D1B
for ; Tue, 30 Mar 2021 18:15:51 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
by oystercatcher.gentoo.org (Postfix) with ESMTP id 9CB17638
for ; Tue, 30 Mar 2021 18:15:50 +0000 (UTC)
From: "Ulrich Müller"
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller"
Message-ID: <1617128093.eb65d74e2ad8428672c7e4d944beaa483a1df6d1.ulm@gentoo>
Subject: [gentoo-commits] proj/devmanual:master commit in: ebuild-writing/common-mistakes/
X-VCS-Repository: proj/devmanual
X-VCS-Files: ebuild-writing/common-mistakes/text.xml
X-VCS-Directories: ebuild-writing/common-mistakes/
X-VCS-Committer: ulm
X-VCS-Committer-Name: Ulrich Müller
X-VCS-Revision: eb65d74e2ad8428672c7e4d944beaa483a1df6d1
X-VCS-Branch: master
Date: Tue, 30 Mar 2021 18:15:50 +0000 (UTC)
Precedence: bulk
List-Post:
List-Help:
List-Unsubscribe:
List-Subscribe:
List-Id: Gentoo Linux mail
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 814bb809-1f5c-4927-beaf-91e5e00b15a9
X-Archives-Hash: 17479fa80a21d610ab9450cc0cf248f6
commit: eb65d74e2ad8428672c7e4d944beaa483a1df6d1
Author: Sam James gentoo org>
AuthorDate: Sun Mar 21 02:36:03 2021 +0000
Commit: Ulrich Müller gentoo 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 gentoo.org>
Signed-off-by: Ulrich Müller 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
- - For cmake based build systems it should be sufficient that
- the ebuild calls cmake-utils_src_compile which picks up the cmake-utils.eclass
+
- For cmake-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).
+ cmake_src_compile takes arguments as well which are passed to make).
- For autotools based build systems you can pass
'--disable-silent-rules' to econf, or use EAPI 5 where that argument is