diff options
author | Steven Knight <knight@baldmt.com> | 2010-08-02 13:21:04 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2010-08-02 13:21:04 (GMT) |
commit | ecaa97dbf0b3c4d4b19efd23716d851b0e7a0e85 (patch) | |
tree | 4eb5179c08b1ac64708e45897460614da7488626 /src/engine/SCons/Environment.xml | |
parent | 4a8a80541afe09ac3e084b95c3c4dbe94de6b5ef (diff) | |
download | SCons-ecaa97dbf0b3c4d4b19efd23716d851b0e7a0e85.zip SCons-ecaa97dbf0b3c4d4b19efd23716d851b0e7a0e85.tar.gz SCons-ecaa97dbf0b3c4d4b19efd23716d851b0e7a0e85.tar.bz2 |
Fix <variablelist> formatting in some new function definitions: make some
overlooked terms <literal>, and rearrange tags so the regular expression
substitution in bin/scons-proc.py match them.
Diffstat (limited to 'src/engine/SCons/Environment.xml')
-rw-r--r-- | src/engine/SCons/Environment.xml | 50 |
1 files changed, 32 insertions, 18 deletions
diff --git a/src/engine/SCons/Environment.xml b/src/engine/SCons/Environment.xml index b2be10d..601cc56 100644 --- a/src/engine/SCons/Environment.xml +++ b/src/engine/SCons/Environment.xml @@ -907,8 +907,9 @@ to be performed: <variablelist> <varlistentry> -<term>timestamp-newer</term> -<listitem><para> +<term><literal>timestamp-newer</literal></term> +<listitem> +<para> Specifies that a target shall be considered out of date and rebuilt if the dependency's timestamp is newer than the target file's timestamp. This is the behavior of the classic Make utility, @@ -916,11 +917,13 @@ and <literal>make</literal> can be used a synonym for <literal>timestamp-newer</literal>. -</para></listitem> +</para> +</listitem> </varlistentry> <varlistentry> -<term>timestamp-match</term> -<listitem><para> +<term><literal>timestamp-match</literal></term> +<listitem> +<para> Specifies that a target shall be considered out of date and rebuilt if the dependency's timestamp is different than the timestamp recorded the last time the target was built. @@ -931,11 +934,13 @@ except that the target will also be rebuilt if a dependency file has been restored to a version with an <emphasis>earlier</emphasis> timestamp, such as can happen when restoring files from backup archives. -</para></listitem> +</para> +</listitem> </varlistentry> <varlistentry> -<term>MD5</term> -<listitem><para> +<term><literal>MD5</literal></term> +<listitem> +<para> Specifies that a target shall be considered out of date and rebuilt if the dependency's content has changed sine the last time the target was built, @@ -946,11 +951,13 @@ last time the target was built. <literal>content</literal> can be used as a synonym for <literal>MD5</literal>. -</para></listitem> +</para> +</listitem> </varlistentry> <varlistentry> -<term>MD5-timestamp</term> -<listitem><para> +<term><literal>MD5-timestamp</literal></term> +<listitem> +<para> Specifies that a target shall be considered out of date and rebuilt if the dependency's content has changed sine the last time the target was built, @@ -974,7 +981,8 @@ that runs a build, updates a file, and runs the build again, all within a single second. -</para></listitem> +</para> +</listitem> </varlistentry> </variablelist> @@ -998,7 +1006,8 @@ that takes the following three arguments: <variablelist> <varlistentry> <term><parameter>dependency</parameter></term> -<listitem><para> +<listitem> +<para> The Node (file) which should cause the <varname>target</varname> @@ -1006,22 +1015,26 @@ to be rebuilt if it has "changed" since the last tme <varname>target</varname> was built. -</para></listitem> +</para> +</listitem> </varlistentry> <varlistentry> <term><parameter>target</parameter></term> -<listitem><para> +<listitem> +<para> The Node (file) being built. In the normal case, this is what should get rebuilt if the <varname>dependency</varname> has "changed." -</para></listitem> +</para> +</listitem> </varlistentry> <varlistentry> <term><parameter>prev_ni</parameter></term> -<listitem><para> +<listitem> +<para> Stored information about the state of the <varname>dependency</varname> the last time the @@ -1031,7 +1044,8 @@ This can be consulted to match various file characteristics such as the timestamp, size, or content signature. -</para></listitem> +</para> +</listitem> </varlistentry> </variablelist> |