Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/devmanual:master commit in: ebuild-writing/common-mistakes/
Date: Tue, 30 Mar 2021 18:15:56
Message-Id: 1617128097.225b6e2260e0e34523cb793de23cee8d78023764.ulm@gentoo
1 commit: 225b6e2260e0e34523cb793de23cee8d78023764
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Tue Mar 30 09:52:44 2021 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Tue Mar 30 18:14:57 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=225b6e22
7
8 ebuild-writing/common-mistakes: modernise autotools/econf advice on verbose log
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
12
13 ebuild-writing/common-mistakes/text.xml | 7 ++++---
14 1 file changed, 4 insertions(+), 3 deletions(-)
15
16 diff --git a/ebuild-writing/common-mistakes/text.xml b/ebuild-writing/common-mistakes/text.xml
17 index 7b47c2c..8afe2a5 100644
18 --- a/ebuild-writing/common-mistakes/text.xml
19 +++ b/ebuild-writing/common-mistakes/text.xml
20 @@ -91,9 +91,10 @@ There are several ways to fix non-verbose build logs depending on the build syst
21 takes arguments as well which are passed to make).
22 </li>
23 <li>
24 - For <c>autotools</c> based build systems you can pass
25 - '--disable-silent-rules' to econf, or use EAPI 5 where that argument is
26 - passed automatically. <c>emake V=1</c> should also work.
27 + For <c>autotools</c> based build systems, <c>econf</c> automatically
28 + passes '--disable-silent-rules' to <c>./configure</c>. If necessary,
29 + <c>emake V=1</c> should also work. Note that <c>V=1</c> is not a universal
30 + parameter so may not always work.
31 </li>
32 <li>
33 For custom Makefiles, you often have to write a patch. Try to get