diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-02-14 21:57:36 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-02-15 12:12:35 +0000 |
commit | 7e6f9baae14d8a47bc152c65b67f5d7f15039a1a (patch) | |
tree | 6cfd69d4aee72347e0070b3d4d210920e6b090bb /bitbake/lib | |
parent | 5a4ea383c3fc792cea87b834655eb013120fbb15 (diff) | |
download | poky-7e6f9baae14d8a47bc152c65b67f5d7f15039a1a.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: 767b4751232f4ee3979deb4d3f733fcf9ee2bd44)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/codeparser.py | 2 |
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 | ||
102 | class PythonParser(): | 102 | class 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): |