Openembedded Bitbake Development
 help / color / mirror / Atom feed
* [PATCH] codeparser: Track appendVar and prependVar calls as we do for getVar
@ 2013-02-14 21:57 Richard Purdie
  0 siblings, 0 replies; only message in thread
From: Richard Purdie @ 2013-02-14 21:57 UTC (permalink / raw)
  To: bitbake-devel

We need to track appendVar and prependVar calls just as we do for getVar in order
to ensure we're not missing variable dependencies.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
diff --git a/bitbake/lib/bb/codeparser.py b/bitbake/lib/bb/codeparser.py
index d7d3f51..979e6bd 100644
--- a/bitbake/lib/bb/codeparser.py
+++ b/bitbake/lib/bb/codeparser.py
@@ -100,7 +100,7 @@ class BufferedLogger(Logger):
         self.buffer = []
 
 class PythonParser():
-    getvars = ("d.getVar", "bb.data.getVar", "data.getVar")
+    getvars = ("d.getVar", "bb.data.getVar", "data.getVar", "d.appendVar", "d.prependVar")
     execfuncs = ("bb.build.exec_func", "bb.build.exec_task")
 
     def warn(self, func, arg):





^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2013-02-14 22:14 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-14 21:57 [PATCH] codeparser: Track appendVar and prependVar calls as we do for getVar Richard Purdie

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox