diff options
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/data_smart.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/data_smart.py b/bitbake/lib/bb/data_smart.py index b9c5d1e5b7..b7ccab767e 100644 --- a/bitbake/lib/bb/data_smart.py +++ b/bitbake/lib/bb/data_smart.py | |||
@@ -682,7 +682,7 @@ class DataSmart(MutableMapping): | |||
682 | filtered = filter(lambda v: v not in removes, | 682 | filtered = filter(lambda v: v not in removes, |
683 | value.split()) | 683 | value.split()) |
684 | value = " ".join(filtered) | 684 | value = " ".join(filtered) |
685 | if expand: | 685 | if expand and var in self.expand_cache: |
686 | # We need to ensure the expand cache has the correct value | 686 | # We need to ensure the expand cache has the correct value |
687 | # flag == "_content" here | 687 | # flag == "_content" here |
688 | self.expand_cache[var].value = value | 688 | self.expand_cache[var].value = value |