From: Richard Purdie Date: Mon, 16 Sep 2013 07:43:30 +0000 (+0000) Subject: data_smart: Allow expansion of flags in getVarFlags X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a3ae7efdf750fc5bb9ff5a75defbcfdab1912dbe;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git data_smart: Allow expansion of flags in getVarFlags Allow a list of flags to expand to be passed into getVarFlags. This is useful within bitbake itself to optimise performance of the dependency generation code. Signed-off-by: Richard Purdie --- diff --git a/lib/bb/data_smart.py b/lib/bb/data_smart.py index 970e404b170..bc4ad54f575 100644 --- a/lib/bb/data_smart.py +++ b/lib/bb/data_smart.py @@ -647,7 +647,7 @@ class DataSmart(MutableMapping): self.varhistory.record(**loginfo) self.dict[var][i] = flags[i] - def getVarFlags(self, var, internalflags=False): + def getVarFlags(self, var, expand = False, internalflags=False): local_var = self._findVar(var) flags = {} @@ -656,7 +656,8 @@ class DataSmart(MutableMapping): if i.startswith("_") and not internalflags: continue flags[i] = local_var[i] - + if expand and i in expand: + flags[i] = self.expand(flags[i], None) if len(flags) == 0: return None return flags