1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-04 02:00:04 +00:00

scripts/devtool: Add getVarFlag expand argument

(From OE-Core rev: afa9b1081848cf0dbc40bbaf565bcc2ee19e8f6e)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie
2016-02-06 22:47:55 +00:00
parent ed5daa177b
commit 32b498cba3
+1 -1
View File
@@ -378,7 +378,7 @@ class BbTaskExecutor(object):
def exec_func(self, func, report):
"""Run bitbake task function"""
if not func in self.executed:
deps = self.rdata.getVarFlag(func, 'deps')
deps = self.rdata.getVarFlag(func, 'deps', False)
if deps:
for taskdepfunc in deps:
self.exec_func(taskdepfunc, True)