diff options
author | Greg Noel <GregNoel@tigris.org> | 2008-08-27 16:30:06 (GMT) |
---|---|---|
committer | Greg Noel <GregNoel@tigris.org> | 2008-08-27 16:30:06 (GMT) |
commit | 386677ac06f3515ff9cb462b67af1b530a416e0e (patch) | |
tree | 399004db111131c280c799ccd26a6197f1ddfbf1 /bin | |
parent | a3a04788066947886a1e95000f0460bc1887f19f (diff) | |
download | SCons-386677ac06f3515ff9cb462b67af1b530a416e0e.zip SCons-386677ac06f3515ff9cb462b67af1b530a416e0e.tar.gz SCons-386677ac06f3515ff9cb462b67af1b530a416e0e.tar.bz2 |
Issue 2159: Man page formatting errors for Packaging()
Diffstat (limited to 'bin')
-rw-r--r-- | bin/scons-proc.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/scons-proc.py b/bin/scons-proc.py index 1de0caa..9880ef3 100644 --- a/bin/scons-proc.py +++ b/bin/scons-proc.py @@ -213,6 +213,8 @@ class SCons_XML_to_man(SCons_XML): body = re.sub('\.EE\n\n+(?!\.IP)', '.EE\n.IP\n', body) body = re.sub('&(scons|SConstruct|SConscript|jar);', r'\\fB\1\\fP', body) body = string.replace(body, '&Dir;', r'\fBDir\fP') + body = string.replace(body, '⌖', r'\fItarget\fP') + body = string.replace(body, '&source;', r'\fIsource\fP') body = re.sub('&b(-link)?-([^;]*);', r'\\fB\2\\fP()', body) body = re.sub('&cv(-link)?-([^;]*);', r'$\2', body) body = re.sub(r'<(command|envar|filename|literal|option)>([^<]*)</\1>', |