[rtems-docs commit] waf: Fix argument bug getting extra source.

Chris Johns chrisj at rtems.org
Fri Mar 1 02:06:21 UTC 2019


Module:    rtems-docs
Branch:    master
Commit:    1393ba0c97648fd2560a13c99aff3f1885cab64e
Changeset: http://git.rtems.org/rtems-docs/commit/?id=1393ba0c97648fd2560a13c99aff3f1885cab64e

Author:    Chris Johns <chrisj at rtems.org>
Date:      Fri Mar  1 13:06:11 2019 +1100

waf: Fix argument bug getting extra source.

---

 common/waf.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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




More information about the vc mailing list