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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user