diff options
author | William Deegan <bill@baddogconsulting.com> | 2020-01-07 21:47:15 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-07 21:47:15 (GMT) |
commit | 5342e2bb1ff3548fe08e05247f6b4bcf5e351ce4 (patch) | |
tree | 461c7199eeaca51218471bf4b51131dcb08d74d1 /src/engine/SCons | |
parent | f98705588b32c84c918b2e0013cc2fa630d71f37 (diff) | |
parent | fa3aa9e79912faa7673587d7d461d9c016f133d2 (diff) | |
download | SCons-5342e2bb1ff3548fe08e05247f6b4bcf5e351ce4.zip SCons-5342e2bb1ff3548fe08e05247f6b4bcf5e351ce4.tar.gz SCons-5342e2bb1ff3548fe08e05247f6b4bcf5e351ce4.tar.bz2 |
Merge pull request #3520 from mwichmann/docfixes
Fixup some doc inconsistencies.
Diffstat (limited to 'src/engine/SCons')
-rw-r--r-- | src/engine/SCons/Environment.xml | 32 | ||||
-rw-r--r-- | src/engine/SCons/Script/SConscript.xml | 12 |
2 files changed, 38 insertions, 6 deletions
diff --git a/src/engine/SCons/Environment.xml b/src/engine/SCons/Environment.xml index b1c2039..35e4bd8 100644 --- a/src/engine/SCons/Environment.xml +++ b/src/engine/SCons/Environment.xml @@ -2879,6 +2879,38 @@ function. </summary> </scons_function> +<scons_function name="Split"> +<arguments>(arg)</arguments> +<summary> +<para> +Returns a list of file names or other objects. +If <varname>arg</varname> is a string, +it will be split on strings of white-space characters +within the string, +making it easier to write long lists of file names. +If <varname>arg</varname> is already a list, +the list will be returned untouched. +If <varname>arg</varname> is any other type of object, +it will be returned as a list +containing just the object. +</para> + +<para> +Example: +</para> + +<example_commands> +files = Split("f1.c f2.c f3.c") +files = env.Split("f4.c f5.c f6.c") +files = Split(""" + f7.c + f8.c + f9.c +""") +</example_commands> +</summary> +</scons_function> + <scons_function name="subst"> <arguments signature="env"> (input, [raw, target, source, conv]) diff --git a/src/engine/SCons/Script/SConscript.xml b/src/engine/SCons/Script/SConscript.xml index 874c110..a1e0129 100644 --- a/src/engine/SCons/Script/SConscript.xml +++ b/src/engine/SCons/Script/SConscript.xml @@ -252,16 +252,16 @@ This specifies help text to be printed if the <option>-h</option> argument is given to &scons;. -If +If &f-Help; -is called multiple times, the text is appended together in the order that +is called multiple times, the text is appended together in the order that &f-Help; -is called. With append set to False, any +is called. With append set to False, any &f-Help; -text generated with +text generated with &f-AddOption; is clobbered. If append is True, the AddOption help is prepended to the help -string, thus preserving the +string, thus preserving the <option>-h</option> message. </para> @@ -393,7 +393,7 @@ A single script may be specified as a string; multiple scripts must be specified as a list (either explicitly or as created by a function like -&f-Split;). +&f-link-Split;). Examples: </para> <example_commands> |