summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/data_smart.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/data_smart.py')
-rw-r--r--bitbake/lib/bb/data_smart.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/data_smart.py b/bitbake/lib/bb/data_smart.py
index 3d773b1d69..cf8919c64f 100644
--- a/bitbake/lib/bb/data_smart.py
+++ b/bitbake/lib/bb/data_smart.py
@@ -616,7 +616,8 @@ class DataSmart(MutableMapping):
616 cachename = var + "[" + flag + "]" 616 cachename = var + "[" + flag + "]"
617 value = self.expand(value, cachename) 617 value = self.expand(value, cachename)
618 if value and flag == "_content" and local_var is not None and "_removeactive" in local_var: 618 if value and flag == "_content" and local_var is not None and "_removeactive" in local_var:
619 filtered = filter(lambda v: v not in local_var["_removeactive"], 619 removes = [self.expand(r) for r in local_var["_removeactive"]]
620 filtered = filter(lambda v: v not in removes,
620 value.split(" ")) 621 value.split(" "))
621 value = " ".join(filtered) 622 value = " ".join(filtered)
622 if expand: 623 if expand: