commit:     05a0ec105e50d6f67a02020bac969474ec6a3ef3
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 29 23:06:16 2021 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Tue Mar 30 18:14:57 2021 +0000
URL:        https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=05a0ec10

ebuild-writing/common-mistakes: adjust XML style for build systems list

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 | 35 +++++++++++++++++++--------------
 1 file changed, 20 insertions(+), 15 deletions(-)

diff --git a/ebuild-writing/common-mistakes/text.xml 
b/ebuild-writing/common-mistakes/text.xml
index 05380bf..7b47c2c 100644
--- a/ebuild-writing/common-mistakes/text.xml
+++ b/ebuild-writing/common-mistakes/text.xml
@@ -83,21 +83,26 @@ 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_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_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
-  passed automatically. 'emake V=1' should also work.</li>
-
-  <li>For custom Makefiles, you often have to write a patch. Try to get
-  upstream to include an option like 'V=1' to enable full verbosity.</li>
-
-  <li>Note that when building Go manually outside of the eclass, you
-  will need GOFLAGS="-x".</li>
+  <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
+    <c>CMAKE_VERBOSE=1</c> by default. If you call emake directly for whatever
+    reason, you can do <c>emake VERBOSE=1</c> (note that '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
+    passed automatically. <c>emake V=1</c> should also work.
+  </li>
+  <li>
+    For custom Makefiles, you often have to write a patch. Try to get
+    upstream to include an option like 'V=1' to enable full verbosity.
+  </li>
+  <li>
+    Note that when building Go manually outside of the eclass, you
+    will need GOFLAGS="-x".
+  </li>
 </ul>
 
 <note>In case you encounter an affected package which uses a build system not

Reply via email to