* [PATCH] data_smart: Correctly handle OVERRIDE values set using ??=
@ 2015-09-16 21:01 Richard Purdie
0 siblings, 0 replies; only message in thread
From: Richard Purdie @ 2015-09-16 21:01 UTC (permalink / raw)
To: bitbake-devel
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.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
diff --git a/bitbake/lib/bb/data_smart.py b/bitbake/lib/bb/data_smart.py
index dc8632c..09a2adb 100644
--- a/bitbake/lib/bb/data_smart.py
+++ b/bitbake/lib/bb/data_smart.py
@@ -654,6 +654,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:
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2015-09-16 21:01 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-16 21:01 [PATCH] data_smart: Correctly handle OVERRIDE values set using ??= Richard Purdie
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.