Added better -H documentation for --debug and remove -e from man page. (Anthony...
authorstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Tue, 18 Nov 2003 05:27:57 +0000 (05:27 +0000)
committerstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Tue, 18 Nov 2003 05:27:57 +0000 (05:27 +0000)
git-svn-id: http://scons.tigris.org/svn/scons/trunk@847 fdb21ef1-2011-0410-befe-b5e4ea1792b1

doc/man/scons.1
src/CHANGES.txt
src/engine/SCons/Script/__init__.py
test/option--H.py

index f3ccafc30d6da1514777364d4515d0190389ba30..cdf785a80a3ab618a0207359a0d209117ccdf260 100644 (file)
@@ -496,10 +496,10 @@ of a given derived file:
 $ scons --debug=includes foo.o
 .EE
 
-.TP
--e, --environment-overrides
-Variables from the execution environment override construction
-variables from the SConscript files.
+.\" .TP
+.\" -e, --environment-overrides
+.\" Variables from the execution environment override construction
+.\" variables from the SConscript files.
 
 .TP
 .RI -f " file" ", --file=" file ", --makefile=" file ", --sconstruct=" file
index d4fb53239cf1814c39da33311d89179d8b9e9310..a36b2abb565724b541e7f6741bf8c71d148c7c90 100644 (file)
@@ -42,6 +42,10 @@ RELEASE 0.95 - XXX
   - Supply an error message if the user tries to configure a BuildDir
     for a directory that already has one.
 
+  - Remove documentation of the still-unimplemented -e option.
+
+  - Add -H help text listing the legal --debug values.
+
 
 
 RELEASE 0.94 - Fri, 07 Nov 2003 05:29:48 -0600
index 71ed2bec4d6712cd809cf7e73e5cf68d5b7bf4e8..0134b97da7dc063d3084475d39ef4896141b8970 100644 (file)
@@ -482,7 +482,9 @@ class OptParser(OptionParser):
                 raise OptionValueError("Warning:  %s is not a valid debug type" % value)
         self.add_option('--debug', action="callback", type="string",
                         callback=opt_debug, nargs=1, dest="debug",
-                        help="Print various types of debugging information.")
+                        metavar="TYPE",
+                        help="Print various types of debugging information: "
+                             "pdb, tree, dtree, time, or includes.")
 
         self.add_option('-f', '--file', '--makefile', '--sconstruct',
                         action="append", nargs=1,
index e0f7b8204d90cc55357fcbf196ea847e32ebe860..5cf9ab73cbf2986e4b09a60396120c86fc868944 100644 (file)
@@ -35,6 +35,7 @@ test.write('SConstruct', "")
 test.run(arguments = '-H')
 
 test.fail_test(string.find(test.stdout(), '-H, --help-options') == -1)
+test.fail_test(string.find(test.stdout(), '--debug=TYPE') == -1)
 
 test.pass_test()