summaryrefslogtreecommitdiffstats
path: root/lib/bb/codeparser.py
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-02-15 11:58:53 +0000
commit767b4751232f4ee3979deb4d3f733fcf9ee2bd44 (patch)
treea9bc2c5a1757d493c6fee81b163aa721bdf558bf /lib/bb/codeparser.py
parentdac12560ac8431ee24609f8de25cb1645572d350 (diff)
downloadbitbake-contrib-767b4751232f4ee3979deb4d3f733fcf9ee2bd44.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>
Diffstat (limited to 'lib/bb/codeparser.py')
-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):