diff options
author | Steven Knight <knight@baldmt.com> | 2005-05-09 13:10:22 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2005-05-09 13:10:22 (GMT) |
commit | f431ccfa16fad1d0db1009eacfdace4f80e9195e (patch) | |
tree | 9a6be04a1b8e287a392eccbe078018728786a5cb | |
parent | e3d8cf40a448b1944e3f338d9c34e2611943ec81 (diff) | |
download | SCons-f431ccfa16fad1d0db1009eacfdace4f80e9195e.zip SCons-f431ccfa16fad1d0db1009eacfdace4f80e9195e.tar.gz SCons-f431ccfa16fad1d0db1009eacfdace4f80e9195e.tar.bz2 |
Fix a man page keyword argument for Command(). (Bjorn Eriksson)
-rw-r--r-- | doc/man/scons.1 | 4 | ||||
-rw-r--r-- | src/CHANGES.txt | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1 index c627a19..a0f4089 100644 --- a/doc/man/scons.1 +++ b/doc/man/scons.1 @@ -2738,9 +2738,9 @@ Clean(['foo', 'bar'], 'something_else_to_clean') '\""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" .TP -.RI Command( target ", " source ", " commands ", [" key = val ", ...])" +.RI Command( target ", " source ", " action ", [" key = val ", ...])" .TP -.RI env.Command( target ", " source ", " commands ", [" key = val ", ...])" +.RI env.Command( target ", " source ", " action ", [" key = val ", ...])" Executes a specific action (or list of actions) to build a target file or files. diff --git a/src/CHANGES.txt b/src/CHANGES.txt index 51574a5..0763a00 100644 --- a/src/CHANGES.txt +++ b/src/CHANGES.txt @@ -59,6 +59,10 @@ RELEASE 0.97 - XXX - Add support for .lex and .yacc file suffixes for Lex and Yacc files. + From Bjorn Eriksson: + + - Fix an incorrect Command() keyword argument in the man page. + From Eric Frias: - Huge performance improvement: wrap the tuples representing an |