summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2017-03-27 10:27:29 +1100
committerChris Johns <chrisj@rtems.org>2017-03-27 10:27:29 +1100
commit02635812f63bba63e679b55737f6feffaec3f7a0 (patch)
tree2a276d87fe9860e1819e6e8f2bd131fe95d32100 /wscript
parentwaf: Cleaner formatting to see the importing. (diff)
downloadrtems-docs-02635812f63bba63e679b55737f6feffaec3f7a0.tar.bz2
waf: Fix linkcheck and spell commands.
Clean up and remove code that is not needed. Fix sphinx-build quoting to work on Windows.
Diffstat (limited to 'wscript')
-rw-r--r--wscript8
1 files changed, 8 insertions, 0 deletions
diff --git a/wscript b/wscript
index 28ebec5..2e83afe 100644
--- a/wscript
+++ b/wscript
@@ -79,3 +79,11 @@ def build(ctx):
def install(ctx):
for b in building:
ctx.recurse(b)
+
+def cmd_spell(ctx):
+ for b in building:
+ ctx.recurse(b)
+
+def cmd_linkcheck(ctx):
+ for b in building:
+ ctx.recurse(b)