From 5b0e88adeb787d6b0a5233b6b8f5956d0f706b45 Mon Sep 17 00:00:00 2001 From: Thomas Nagy Date: Sat, 16 Jan 2016 13:03:09 +0100 Subject: [PATCH] Changed the cwd - working folders must be given as node objects --- docs/sphinx/wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sphinx/wscript b/docs/sphinx/wscript index 130dc258..d9fd4b49 100644 --- a/docs/sphinx/wscript +++ b/docs/sphinx/wscript @@ -25,7 +25,7 @@ def build(bld): bld.path.make_node('_static').mkdir() bld( rule = "${SPHINX_BUILD} ${SPHINX_ARGS} -b html -d %s . %s" % (os.path.join(out, "doctrees"), os.path.join(out, "html")), - cwd = bld.path.abspath(), + cwd = bld.path, source = bld.path.parent.parent.find_dir('waflib').ant_glob('**/*.py') + bld.path.ant_glob('**/*.rst') + bld.path.ant_glob('_templates/indexcontent.html')