diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-09-16 07:43:30 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-09-17 14:11:04 +0100 |
commit | a61519f3fb664c9c0e14babb5e3f97f52ba912cc (patch) | |
tree | 4138c6e085fa9766a60fbb922adfcdb8f1942bfe /bitbake/lib/bb | |
parent | 0902850e979511b27a4c452b39b9557d57cbb039 (diff) | |
download | poky-a61519f3fb664c9c0e14babb5e3f97f52ba912cc.tar.gz |
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 <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r-- | bitbake/lib/bb/data_smart.py | 5 |
1 files changed, 3 insertions, 2 deletions
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): | |||
647 | self.varhistory.record(**loginfo) | 647 | self.varhistory.record(**loginfo) |
648 | self.dict[var][i] = flags[i] | 648 | self.dict[var][i] = flags[i] |
649 | 649 | ||
650 | def getVarFlags(self, var, internalflags=False): | 650 | def getVarFlags(self, var, expand = False, internalflags=False): |
651 | local_var = self._findVar(var) | 651 | local_var = self._findVar(var) |
652 | flags = {} | 652 | flags = {} |
653 | 653 | ||
@@ -656,7 +656,8 @@ class DataSmart(MutableMapping): | |||
656 | if i.startswith("_") and not internalflags: | 656 | if i.startswith("_") and not internalflags: |
657 | continue | 657 | continue |
658 | flags[i] = local_var[i] | 658 | flags[i] = local_var[i] |
659 | 659 | if expand and i in expand: | |
660 | flags[i] = self.expand(flags[i], None) | ||
660 | if len(flags) == 0: | 661 | if len(flags) == 0: |
661 | return None | 662 | return None |
662 | return flags | 663 | return flags |