summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/waf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/waf.py b/common/waf.py
index 6512253..0178def 100644
--- a/common/waf.py
+++ b/common/waf.py
@@ -155,7 +155,7 @@ def cmd_build(ctx, conf_dir=".", source_dir="."):
html_resources(ctx)
ctx(
rule = "${BIN_SPHINX_BUILD} -b html -c %s -j %d -d build/doctrees %s build/html" % (conf_dir, ctx.options.jobs, source_dir),
- cwd = ctx.path.abspath(),
+ cwd = ctx.path,
source = ctx.path.ant_glob('**/*.rst'),# + ctx.path.ant_glob('conf.py'),
target = ctx.path.find_or_declare('html/index.html')
)