summaryrefslogtreecommitdiffstats
path: root/common/waf.py
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2019-03-01 13:06:11 +1100
committerChris Johns <chrisj@rtems.org>2019-03-01 13:06:11 +1100
commit1393ba0c97648fd2560a13c99aff3f1885cab64e (patch)
treec05beef544d6bdb44bb67c2e0dd5161967718c64 /common/waf.py
parentUser: Change output block to type none. (diff)
downloadrtems-docs-1393ba0c97648fd2560a13c99aff3f1885cab64e.tar.bz2
waf: Fix argument bug getting extra source.
Diffstat (limited to '')
-rw-r--r--common/waf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/waf.py b/common/waf.py
index 6a65b42..d71541e 100644
--- a/common/waf.py
+++ b/common/waf.py
@@ -325,7 +325,7 @@ def doc_pdf(ctx, source_dir, conf_dir, sources):
rule = rule,
cwd = ctx.path,
source = sources_source(ctx, sources),
- depends_on = sources_extra(sources),
+ depends_on = sources_extra(ctx, sources),
target = ctx.path.find_or_declare("%s/%s.tex" % (buildtype,
ctx.path.name))
)