summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/data_smart.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2016-02-02 23:49:40 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-02-04 23:47:49 +0000
commit390c2c1268140a5309e8027a22a310ee668ce7bb (patch)
tree1eb3ebdfff5abdfd84266e88867564be58e22ca7 /bitbake/lib/bb/data_smart.py
parent56454f6fb2aed2bbfd6e1c1759f15d97db086d90 (diff)
downloadpoky-390c2c1268140a5309e8027a22a310ee668ce7bb.tar.gz
bitbake: data_smart: Add missing expand parameter to getVar call
(Bitbake rev: 2876019e696ff2af164961d5d4c8e3ea9dfefc23) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/data_smart.py')
-rw-r--r--bitbake/lib/bb/data_smart.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/data_smart.py b/bitbake/lib/bb/data_smart.py
index 66cb84564e..a6611c4e94 100644
--- a/bitbake/lib/bb/data_smart.py
+++ b/bitbake/lib/bb/data_smart.py
@@ -692,7 +692,7 @@ class DataSmart(MutableMapping):
692 match = active[a] 692 match = active[a]
693 del active[a] 693 del active[a]
694 if match: 694 if match:
695 value = self.getVar(match) 695 value = self.getVar(match, False)
696 696
697 if local_var is not None and value is None: 697 if local_var is not None and value is None:
698 if flag in local_var: 698 if flag in local_var: