From 1393ba0c97648fd2560a13c99aff3f1885cab64e Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Fri, 1 Mar 2019 13:06:11 +1100 Subject: waf: Fix argument bug getting extra source. --- common/waf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common') 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)) ) -- cgit v1.2.3