diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-06 22:47:55 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-06 23:10:44 +0000 |
commit | 32b498cba38b570b846c0b9ff615c37bac6f745b (patch) | |
tree | 0e6b84397831cc792a90d5e3b179247bcd645d20 /scripts | |
parent | ed5daa177baff265589bc50ea21a440693d4c478 (diff) | |
download | poky-32b498cba38b570b846c0b9ff615c37bac6f745b.tar.gz |
scripts/devtool: Add getVarFlag expand argument
(From OE-Core rev: afa9b1081848cf0dbc40bbaf565bcc2ee19e8f6e)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/lib/devtool/standard.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py index 83906ac3d7..390d98fd55 100644 --- a/scripts/lib/devtool/standard.py +++ b/scripts/lib/devtool/standard.py | |||
@@ -378,7 +378,7 @@ class BbTaskExecutor(object): | |||
378 | def exec_func(self, func, report): | 378 | def exec_func(self, func, report): |
379 | """Run bitbake task function""" | 379 | """Run bitbake task function""" |
380 | if not func in self.executed: | 380 | if not func in self.executed: |
381 | deps = self.rdata.getVarFlag(func, 'deps') | 381 | deps = self.rdata.getVarFlag(func, 'deps', False) |
382 | if deps: | 382 | if deps: |
383 | for taskdepfunc in deps: | 383 | for taskdepfunc in deps: |
384 | self.exec_func(taskdepfunc, True) | 384 | self.exec_func(taskdepfunc, True) |