diff options
author | Steven Knight <knight@baldmt.com> | 2005-04-05 09:11:07 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2005-04-05 09:11:07 (GMT) |
commit | 38ce97741ff4c6ade221be844b36bc6cdae66d3a (patch) | |
tree | 5edded494c24eedfdf91b4a0c657a10125333abd /doc/man | |
parent | f5efea26f394179c87ab43c8b49139577af04696 (diff) | |
download | SCons-38ce97741ff4c6ade221be844b36bc6cdae66d3a.zip SCons-38ce97741ff4c6ade221be844b36bc6cdae66d3a.tar.gz SCons-38ce97741ff4c6ade221be844b36bc6cdae66d3a.tar.bz2 |
Fix misplaced line in the man page. (Greg Ward)
Diffstat (limited to 'doc/man')
-rw-r--r-- | doc/man/scons.1 | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1 index 26fcc66..ffb326d 100644 --- a/doc/man/scons.1 +++ b/doc/man/scons.1 @@ -8386,12 +8386,6 @@ b = Builder("my_build < $TARGET > $SOURCE", emitter = {'.suf1' : e_suf1, '.suf2' : e_suf2}) .EE -.IP -The -.I generator -and -.I action -arguments must not both be used for the same Builder. .IP multi Specifies whether this builder is allowed to be called multiple times for @@ -8441,6 +8435,13 @@ def g(source, target, env, for_signature): b = Builder(generator=g) .EE +.IP +The +.I generator +and +.I action +arguments must not both be used for the same Builder. + .IP src_builder Specifies a builder to use when a source file name suffix does not match any of the suffixes of the builder. Using this argument produces a |