Changeset ed3794e in rtems-docs for common/waf.py
- Timestamp:
- 01/20/16 04:00:32 (7 years ago)
- Branches:
- 4.11, 5, am, master
- Children:
- df77336
- Parents:
- 9b495a2
- git-author:
- Amar Takhar <amar@…> (01/20/16 04:00:32)
- git-committer:
- Amar Takhar <verm@…> (05/03/16 00:51:25)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
common/waf.py
r9b495a2 red3794e 30 30 31 31 32 def cmd_linkcheck(ctx, conf_dir=".", source_dir="."): 33 ctx( 34 rule = "${BIN_SPHINX_BUILD} -b linkcheck -c %s -j %d -d build/doctrees %s build/linkcheck" % (conf_dir, ctx.options.jobs, source_dir), 35 cwd = ctx.path.abspath(), 36 source = ctx.path.ant_glob('**/*.rst'), 37 target = "linkcheck/output.txt" 38 ) 39 40 32 41 class spell(BuildContext): 33 42 __doc__ = "Check spelling. Supply a list of files or a glob (*.rst)" 34 43 cmd = 'spell' 35 44 fun = 'cmd_spell' 45 46 47 class linkcheck(BuildContext): 48 __doc__ = "Check all external URL references." 49 cmd = 'linkcheck' 50 fun = 'cmd_linkcheck' 36 51 37 52 … … 79 94 prompt = 0 80 95 ) 81 82 96 83 97 def doc_singlehtml(ctx, source_dir, conf_dir):
Note: See TracChangeset
for help on using the changeset viewer.