waf: Fix linkcheck and spell commands.

Clean up and remove code that is not needed.

Fix sphinx-build quoting to work on Windows.
This commit is contained in:
Chris Johns
2017-03-27 10:27:29 +11:00
parent ad5d63277c
commit 02635812f6
2 changed files with 27 additions and 45 deletions

View File

@@ -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)