summaryrefslogtreecommitdiffstats
path: root/doc/user/command-line.xml
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2011-03-24 21:27:51 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2011-03-24 21:27:51 (GMT)
commit1d89b2116cf0b8504fa0d77e2c19ce56b1b4a17a (patch)
treeef26ca8c3c157d57c435b1773776c07c16cf8200 /doc/user/command-line.xml
parent9d3e484c30c20de4f7fac5cb0592cd1f33301fc1 (diff)
downloadSCons-1d89b2116cf0b8504fa0d77e2c19ce56b1b4a17a.zip
SCons-1d89b2116cf0b8504fa0d77e2c19ce56b1b4a17a.tar.gz
SCons-1d89b2116cf0b8504fa0d77e2c19ce56b1b4a17a.tar.bz2
updated docs via bin/scons-doc.py -u
Diffstat (limited to 'doc/user/command-line.xml')
-rw-r--r--doc/user/command-line.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/user/command-line.xml b/doc/user/command-line.xml
index 5ed8ed8..1bb84e2 100644
--- a/doc/user/command-line.xml
+++ b/doc/user/command-line.xml
@@ -1255,7 +1255,7 @@
<screen>
% <userinput>scons -Q COLOR=magenta foo.o</userinput>
- scons: *** Invalid value for option COLOR: magenta
+ scons: *** Invalid value for option COLOR: magenta. Valid values are: ('red', 'green', 'blue')
File "/home/my/project/SConstruct", line 5, in &lt;module&gt;
</screen>
@@ -1311,15 +1311,15 @@
<screen>
% <userinput>scons -Q COLOR=Red foo.o</userinput>
- scons: *** Invalid value for option COLOR: Red
+ scons: *** Invalid value for option COLOR: Red. Valid values are: ('red', 'green', 'blue')
File "/home/my/project/SConstruct", line 5, in &lt;module&gt;
% <userinput>scons -Q COLOR=BLUE foo.o</userinput>
- scons: *** Invalid value for option COLOR: BLUE
+ scons: *** Invalid value for option COLOR: BLUE. Valid values are: ('red', 'green', 'blue')
File "/home/my/project/SConstruct", line 5, in &lt;module&gt;
% <userinput>scons -Q COLOR=nAvY foo.o</userinput>
- scons: *** Invalid value for option COLOR: nAvY
+ scons: *** Invalid value for option COLOR: nAvY. Valid values are: ('red', 'green', 'blue')
File "/home/my/project/SConstruct", line 5, in &lt;module&gt;
</screen>