From a61519f3fb664c9c0e14babb5e3f97f52ba912cc Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 16 Sep 2013 07:43:30 +0000 Subject: bitbake: 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. (Bitbake rev: a3ae7efdf750fc5bb9ff5a75defbcfdab1912dbe) Signed-off-by: Richard Purdie --- bitbake/lib/bb/data_smart.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'bitbake') diff --git a/bitbake/lib/bb/data_smart.py b/bitbake/lib/bb/data_smart.py index 970e404b17..bc4ad54f57 100644 --- a/bitbake/lib/bb/data_smart.py +++ b/bitbake/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 -- cgit v1.2.3-54-g00ecf