summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2002-01-12 19:17:54 (GMT)
committerSteven Knight <knight@baldmt.com>2002-01-12 19:17:54 (GMT)
commitbda9d350b0cc52fefb2303114e20fc954710d76e (patch)
tree343a6a217ac1b420ff7860ee399035757dfc4374 /doc
parente6c4e9ae3fc9edc60981f15ece898645747ba82c (diff)
downloadSCons-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.15
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