summaryrefslogtreecommitdiffstats
path: root/doc/man
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2004-03-12 13:24:18 (GMT)
committerSteven Knight <knight@baldmt.com>2004-03-12 13:24:18 (GMT)
commitffb0263b87f3917dba0ecbfca4e26ab3185f2a0e (patch)
treece7ad48e3d0e7cd9708904c8ceedad4da4125090 /doc/man
parent6d50f255919fb9f7d2e7742c423f3cc563a60372 (diff)
downloadSCons-ffb0263b87f3917dba0ecbfca4e26ab3185f2a0e.zip
SCons-ffb0263b87f3917dba0ecbfca4e26ab3185f2a0e.tar.gz
SCons-ffb0263b87f3917dba0ecbfca4e26ab3185f2a0e.tar.bz2
Add an Execute() method.
Diffstat (limited to 'doc/man')
-rw-r--r--doc/man/scons.121
1 files changed, 21 insertions, 0 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1
index 2d7886b..caba4a5 100644
--- a/doc/man/scons.1
+++ b/doc/man/scons.1
@@ -2555,6 +2555,27 @@ initialized with the specified
pairs.
'\"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
+.TP
+.RI Execute( action ", [" strfunction ", " varlist ])
+.TP
+.RI env.Execute( action ", [" strfunction ", " varlist ])
+Executes an Action object.
+The specified
+.IR action
+may be an Action object
+(see the section "Action Objects,"
+below, for a complete explanation of the arguments and behavior),
+or it may be a command-line string,
+list of commands,
+or executable Python function,
+each of which will be converted
+into an Action object
+and then executed.
+The exit value of the command
+or return value of the Python function
+will be returned.
+
+'\"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
.TP
.RI Exit([ value ])
.TP