summaryrefslogtreecommitdiffstats
path: root/bitbake
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:50:15 +0100
commitc584d93537da487d1a9307330f6836940c0f9e43 (patch)
treeb60595bfe6b9aac1afb747dd9e292960c3700e84 /bitbake
parentb0574887b45dcd5d5c90335dac5e1509ed8a2eff (diff)
downloadpoky-c584d93537da487d1a9307330f6836940c0f9e43.tar.gz
bitbake: 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. (Bitbake rev: 6568534f355fa8b298dac93bfe9e956c3036ee8c) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/codeparser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/codeparser.py b/bitbake/lib/bb/codeparser.py
index d7d3f513d9..979e6bdfd9 100644
--- a/bitbake/lib/bb/codeparser.py
+++ b/bitbake/lib/bb/codeparser.py
@@ -100,7 +100,7 @@ class BufferedLogger(Logger):
100 self.buffer = [] 100 self.buffer = []
101 101
102class PythonParser(): 102class PythonParser():
103 getvars = ("d.getVar", "bb.data.getVar", "data.getVar") 103 getvars = ("d.getVar", "bb.data.getVar", "data.getVar", "d.appendVar", "d.prependVar")
104 execfuncs = ("bb.build.exec_func", "bb.build.exec_task") 104 execfuncs = ("bb.build.exec_func", "bb.build.exec_task")
105 105
106 def warn(self, func, arg): 106 def warn(self, func, arg):