diff options
-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 6229fbf693..d32501821d 100644 --- a/bitbake/lib/bb/data_smart.py +++ b/bitbake/lib/bb/data_smart.py | |||
@@ -418,7 +418,7 @@ class DataSmart(MutableMapping): | |||
418 | self.setVar(append, sval) | 418 | self.setVar(append, sval) |
419 | elif op == "_remove": | 419 | elif op == "_remove": |
420 | removes = self.getVarFlag(append, "_removeactive", False) or [] | 420 | removes = self.getVarFlag(append, "_removeactive", False) or [] |
421 | removes.append(a) | 421 | removes.extend(a.split()) |
422 | self.setVarFlag(append, "_removeactive", removes, ignore=True) | 422 | self.setVarFlag(append, "_removeactive", removes, ignore=True) |
423 | 423 | ||
424 | # We save overrides that may be applied at some later stage | 424 | # We save overrides that may be applied at some later stage |