[bitbake-devel] [PATCH] data_smart: Add missing expand parameter to getVar call

Richard Purdie richard.purdie at linuxfoundation.org
Tue Feb 2 23:49:40 UTC 2016


Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

diff --git a/bitbake/lib/bb/data_smart.py b/bitbake/lib/bb/data_smart.py
index b700fc7..8c3e9ef 100644
--- a/bitbake/lib/bb/data_smart.py
+++ b/bitbake/lib/bb/data_smart.py
@@ -692,7 +692,7 @@ class DataSmart(MutableMapping):
                             match = active[a]
                             del active[a]
             if match:
-                value = self.getVar(match)
+                value = self.getVar(match, False)
 
         if local_var is not None and value is None:
             if flag in local_var:





More information about the bitbake-devel mailing list