summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-02-14 21:57:36 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-04-12 17:49:22 +0100
commit6568534f355fa8b298dac93bfe9e956c3036ee8c (patch)
tree92df25220d5de5efb01a3bd2b6157948c584c701
parent571d88c10dee674a27d39db81bc245425fe2b27e (diff)
downloadbitbake-6568534f355fa8b298dac93bfe9e956c3036ee8c.tar.gz
codeparser: Track appendVar and prependVar calls as we do for getVar
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>
-rw-r--r--lib/bb/codeparser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/codeparser.py b/lib/bb/codeparser.py
index d7d3f513d..979e6bdfd 100644
--- a/lib/bb/codeparser.py
+++ b/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):