diff options
author | Mats Wichmann <mats@linux.com> | 2017-12-21 18:46:04 (GMT) |
---|---|---|
committer | Mats Wichmann <mats@linux.com> | 2017-12-21 18:46:04 (GMT) |
commit | 5548d860e8fcf4cb699cd152cccdcd6f74ec75c3 (patch) | |
tree | 7590ff6b797c27dee04d7fccb43b6f8ef7bc8aa0 /doc | |
parent | e158a563a58f8651bcaf77c45799056e76e84a72 (diff) | |
download | SCons-5548d860e8fcf4cb699cd152cccdcd6f74ec75c3.zip SCons-5548d860e8fcf4cb699cd152cccdcd6f74ec75c3.tar.gz SCons-5548d860e8fcf4cb699cd152cccdcd6f74ec75c3.tar.bz2 |
Fix nested list formatting in manpage
The definition of the list term "--debug=list"
contains a list of its own; the list tiems
in this list need to have their text contents
wrapped in paragraph tags.
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man/scons.xml | 35 |
1 files changed, 24 insertions, 11 deletions
diff --git a/doc/man/scons.xml b/doc/man/scons.xml index c198957..03a3478 100644 --- a/doc/man/scons.xml +++ b/doc/man/scons.xml @@ -852,18 +852,31 @@ and ultimately removed.</para> </varlistentry> <varlistentry> <term>--debug=time</term> -<listitem> + <listitem> <para>Prints various time profiling information:</para> -<itemizedlist> -<listitem>The time spent executing each individual build command</listitem> -<listitem>The total build time (time SCons ran from beginning to end)</listitem> -<listitem>The total time spent reading and executing SConscript files</listitem> -<listitem>The total time spent SCons itself spend running -(that is, not counting reading and executing SConscript files)</listitem> -<listitem>The total time spent executing all build commands</listitem> -<listitem>The elapsed wall-clock time spent executing those build commands</listitem> -<listitem>The time spent processing each file passed to the <emphasis>SConscript()</emphasis> function</listitem> -</itemizedlist> + <itemizedlist> + <listitem> +<para>The time spent executing each individual build command</para> + </listitem> + <listitem> +<para>The total build time (time SCons ran from beginning to end)</para> + </listitem> + <listitem> +<para>The total time spent reading and executing SConscript files</para> + </listitem> + <listitem> +<para>The total time spent SCons itself spend running +(that is, not counting reading and executing SConscript files)</para> + </listitem> + <listitem> +<para>The total time spent executing all build commands</para></listitem> +<listitem> +<para>The elapsed wall-clock time spent executing those build commands</para> + </listitem> + <listitem> +<para>The time spent processing each file passed to the <emphasis>SConscript()</emphasis> function</para> + </listitem> + </itemizedlist> <para> (When <command>scons</command> |