summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2016-10-29 04:16:08 +1100
committerChris Johns <chrisj@rtems.org>2016-10-29 04:16:38 +1100
commitf3a7c9641ba030dd2e8b5f010c4b79df7bcf5c67 (patch)
tree248df4ed928c32199088b409d940245ff0bdff84 /common
parentobject_services.rst: Add _rtems_object_id_api_minimum_class and _rtems_object... (diff)
downloadrtems-docs-f3a7c9641ba030dd2e8b5f010c4b79df7bcf5c67.tar.bz2
waf: Update to support a recent waf.
Diffstat (limited to 'common')
-rw-r--r--common/waf.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/waf.py b/common/waf.py
index d7a46c1..0e31c1f 100644
--- a/common/waf.py
+++ b/common/waf.py
@@ -83,7 +83,7 @@ def doc_pdf(ctx, source_dir, conf_dir):
ctx(
rule = "${BIN_SPHINX_BUILD} -b latex -c %s -j %d -d build/doctrees %s build/latex" % (conf_dir, ctx.options.jobs, source_dir),
- cwd = ctx.path.abspath(),
+ cwd = ctx.path,
source = ctx.path.ant_glob('**/*.rst'),
target = "latex/%s.tex" % ctx.path.name
)
@@ -92,7 +92,7 @@ def doc_pdf(ctx, source_dir, conf_dir):
ctx(
features = 'tex',
- cwd = "%s/latex/" % ctx.path.get_bld().abspath(),
+ cwd = "%s/latex/" % ctx.path.get_bld().abspath(),
type = 'pdflatex',
source = ctx.bldnode.find_or_declare("latex/%s.tex" % ctx.path.name),
prompt = 0