diff options
author | Steven Knight <knight@baldmt.com> | 2003-07-21 12:03:33 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-07-21 12:03:33 (GMT) |
commit | d77bd9aa09a469f734d52951f09ec8b649d33482 (patch) | |
tree | afaf9d46954b81e86194f5201dd87e0a640c4fd4 /doc | |
parent | cf7a4545126e4fe5a0c36c0c26b74980d1c06c9a (diff) | |
download | SCons-d77bd9aa09a469f734d52951f09ec8b649d33482.zip SCons-d77bd9aa09a469f734d52951f09ec8b649d33482.tar.gz SCons-d77bd9aa09a469f734d52951f09ec8b649d33482.tar.bz2 |
Support specifying a list of tools when calling env.Copy(). (Chad Austin)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man/scons.1 | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1 index 7c93e0e..7be2a37 100644 --- a/doc/man/scons.1 +++ b/doc/man/scons.1 @@ -1791,6 +1791,15 @@ env2 = env.Copy() env3 = env.Copy(CCFLAGS = '-g') .EE +Additionally, a list of tools may be specified, as in the Environment +constructor: + +.ES +def MyTool(env): env['FOO'] = 'bar' +env4 = env.Copy(tools = ['msvc', MyTool]) +.EE + + .TP .RI CVS( repository ", " module ) A factory function that |