diff options
author | Steven Knight <knight@baldmt.com> | 2003-04-20 03:30:39 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-04-20 03:30:39 (GMT) |
commit | b462d3a29bc8ed264b51c6af5e38cd878ca00ea2 (patch) | |
tree | 3d4cbf18f71cfa6b6622e3a4a33f4f36d522063a /doc | |
parent | 1691e6792ea238c0cfe3d8f4cc1aa56262d343b4 (diff) | |
download | SCons-b462d3a29bc8ed264b51c6af5e38cd878ca00ea2.zip SCons-b462d3a29bc8ed264b51c6af5e38cd878ca00ea2.tar.gz SCons-b462d3a29bc8ed264b51c6af5e38cd878ca00ea2.tar.bz2 |
Make Export() work for local variables. (Anthony Roach)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man/scons.1 | 25 |
1 files changed, 19 insertions, 6 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1 index 27dd9a7..18c5d80 100644 --- a/doc/man/scons.1 +++ b/doc/man/scons.1 @@ -3318,9 +3318,12 @@ The exported variables are kept in a global collection, so subsequent calls to .BR Export () will over-write previous exports that have the same name. -Multiple variable names should be passed to +Multiple variable names can be passed to .BR Export () -as separate arguments. Examples: +as separate arguments or as a list. A dictionary can be used to map +variables to a different name when exported. Both local variables and +global variables can be exported. +Examples: .ES env = Environment() @@ -3328,8 +3331,14 @@ env = Environment() Export("env") package = 'my_name' -# Make env and package available for all SConscript files to Import(). +# Make env and package available for all SConscript files:. Export("env", "package") + +# Make env and package available for all SConscript files: +Export(["env", "package"]) + +# Make env available using the name debug:. +Export({"debug":env}) .EE .IP @@ -3405,14 +3414,17 @@ argument to Variables exported by .BR SConscript () have precedence. -Multiple variable names should be passed to +Multiple variable names can be passed to .BR Import () -as separate arguments. +as separate arguments or as a list. The variable "*" can be used +to import all variables. Examples: .ES Import("env") Import("env", "variable") +Import(["env", "variable"]) +Import("*") .EE .TP @@ -3554,7 +3566,8 @@ as a SConscript (configuration) file. The optional .I exports -argument provides a list of variable names to export to +argument provides a list of variable names or a dictionary of +named values to export to .IR script ". " These variables are locally exported only to the specified .IR script , |