waf: Fix argument bug getting extra source.

This commit is contained in:
Chris Johns 2019-03-01 13:06:11 +11:00
parent d5b631fa3b
commit 1393ba0c97

View File

@ -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))
)