diff options
author | Steven Knight <knight@baldmt.com> | 2004-09-04 17:29:18 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-09-04 17:29:18 (GMT) |
commit | 3db77f1205f4e7bc1018bb21e35f17adaf3aa5a2 (patch) | |
tree | 866fc90c8fe48be872b9ad0ec97ed4a91c877cc3 /doc | |
parent | 891cea19ddbd60069d06a7f472672f7e569a9354 (diff) | |
download | SCons-3db77f1205f4e7bc1018bb21e35f17adaf3aa5a2.zip SCons-3db77f1205f4e7bc1018bb21e35f17adaf3aa5a2.tar.gz SCons-3db77f1205f4e7bc1018bb21e35f17adaf3aa5a2.tar.bz2 |
Refactor spawning command-line actions to clean up the interface between Action and SConf.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man/scons.1 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1 index 28f7029..43cc318 100644 --- a/doc/man/scons.1 +++ b/doc/man/scons.1 @@ -6177,7 +6177,7 @@ that may not be set or used in a construction environment. .IP SPAWN A command interpreter function that will be called to execute command line -strings. The function must expect 4 arguments: +strings. The function must expect the following arguments: .ES def spawn(shell, escape, cmd, args, env): @@ -6191,7 +6191,7 @@ the command line. .I cmd is the path to the command to be executed. .I args -is that arguments to the command. +is the arguments to the command. .I env is a dictionary of the environment variables in which the command should be executed. |