From patchwork Thu Feb 14 21:57:36 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel] codeparser: Track appendVar and prependVar calls as we do for getVar Date: Thu, 14 Feb 2013 21:57:36 -0000 From: Richard Purdie X-Patchwork-Id: 44669 Message-Id: <1360879056.11225.127.camel@ted> 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 --- 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):