aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2021-03-29 23:06:16 +0000
committerUlrich Müller <ulm@gentoo.org>2021-03-30 20:14:57 +0200
commit05a0ec105e50d6f67a02020bac969474ec6a3ef3 (patch)
tree49d43fffce3a940e493473c0c73ca001a470b380 /ebuild-writing
parentebuild-writing/common-mistakes: slight grammar fixes/phrasing changes (diff)
downloaddevmanual-05a0ec105e50d6f67a02020bac969474ec6a3ef3.tar.gz
devmanual-05a0ec105e50d6f67a02020bac969474ec6a3ef3.tar.bz2
devmanual-05a0ec105e50d6f67a02020bac969474ec6a3ef3.zip
ebuild-writing/common-mistakes: adjust XML style for build systems list
Signed-off-by: Sam James <sam@gentoo.org> Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'ebuild-writing')
-rw-r--r--ebuild-writing/common-mistakes/text.xml35
1 files 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