diff options
| author | Steven Knight <knight@baldmt.com> | 2003-11-18 05:27:57 (GMT) |
|---|---|---|
| committer | Steven Knight <knight@baldmt.com> | 2003-11-18 05:27:57 (GMT) |
| commit | 921722a590e38747ab92e91f8d048b6a63345b9e (patch) | |
| tree | 720306c9b7cbb8ca9c097d80e45a1ce18d96cf6a /src/engine/SCons/Script | |
| parent | 8d1c196a9da9634739875c94607cf423b6e35a22 (diff) | |
| download | SCons-921722a590e38747ab92e91f8d048b6a63345b9e.zip SCons-921722a590e38747ab92e91f8d048b6a63345b9e.tar.gz SCons-921722a590e38747ab92e91f8d048b6a63345b9e.tar.bz2 | |
Added better -H documentation for --debug and remove -e from man page. (Anthony Roach)
Diffstat (limited to 'src/engine/SCons/Script')
| -rw-r--r-- | src/engine/SCons/Script/__init__.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/engine/SCons/Script/__init__.py b/src/engine/SCons/Script/__init__.py index 71ed2be..0134b97 100644 --- a/src/engine/SCons/Script/__init__.py +++ b/src/engine/SCons/Script/__init__.py @@ -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, |
