bitbake: data_smart: Correctly handle OVERRIDE values set using ??=

Right now, OVERRIDES dependency variables set using ??=, e.g. TARGET_ARCH
in OE-Core don't have their dependencies tracked. This is a bug, fix it.

(Bitbake rev: 944734503768f9e9223ef041f2d7873455418a54)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2015-09-16 22:01:07 +01:00
parent 701ad76270
commit 60d019dde0
1 changed files with 2 additions and 0 deletions

View File

@ -644,6 +644,8 @@ class DataSmart(MutableMapping):
if flag == "_defaultval" and '_' in var:
self._setvar_update_overrides(var, **loginfo)
if flag == "_defaultval" and var in self.overridevars:
self._setvar_update_overridevars(var, value)
if flag == "unexport" or flag == "export":
if not "__exportlist" in self.dict: