diff options
author | Steven Knight <knight@baldmt.com> | 2002-01-12 19:17:54 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-01-12 19:17:54 (GMT) |
commit | bda9d350b0cc52fefb2303114e20fc954710d76e (patch) | |
tree | 343a6a217ac1b420ff7860ee399035757dfc4374 /doc | |
parent | e6c4e9ae3fc9edc60981f15ece898645747ba82c (diff) | |
download | SCons-bda9d350b0cc52fefb2303114e20fc954710d76e.zip SCons-bda9d350b0cc52fefb2303114e20fc954710d76e.tar.gz SCons-bda9d350b0cc52fefb2303114e20fc954710d76e.tar.bz2 |
Make the Default() method accomodate targets with white space in the file name.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man/scons.1 | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1 index 3f4af06..49c2e21 100644 --- a/doc/man/scons.1 +++ b/doc/man/scons.1 @@ -925,6 +925,9 @@ This specifies a list of default targets. Default targets will be built by if no explicit targets are given on the comamnd line. Multiple targets can be specified either as a space delimited string of target file names or as seperate arguments. +Target names with white space may be be enclosed in an +array to prevent the string from being split into +separate file names. .BR Default () will also accept the return value of any of the ccnstruction environment builder methods. @@ -932,7 +935,7 @@ Example: .IP .nf -Default('foo', 'bar', 'baz') +Default('foo', 'bar', 'baz', ['file with whitespace']) .PP .fi |