summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorChristopher Larson <chris_larson@mentor.com>2013-08-27 16:27:41 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-08-28 00:34:13 +0100
commit87f413f61715f9a4e11614655b0a42f7725a3e5e (patch)
tree77bd7f8218ad135c429f3b4308a7b4e1d9d044e9 /bitbake
parent092190e20b42cb38dd3f497dd6375f01fd973d66 (diff)
downloadast2050-yocto-poky-87f413f61715f9a4e11614655b0a42f7725a3e5e.zip
ast2050-yocto-poky-87f413f61715f9a4e11614655b0a42f7725a3e5e.tar.gz
bitbake: data_smart: allow removal of multiple words at once with _remove
FOO = "foo bar baz" FOO_remove = "foo baz" (Bitbake rev: 04127dec207d6dfc0ada56c5cc67ec9ad30517a8) Signed-off-by: Christopher Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/data_smart.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/data_smart.py b/bitbake/lib/bb/data_smart.py
index 6229fbf..d325018 100644
--- a/bitbake/lib/bb/data_smart.py
+++ b/bitbake/lib/bb/data_smart.py
@@ -418,7 +418,7 @@ class DataSmart(MutableMapping):
self.setVar(append, sval)
elif op == "_remove":
removes = self.getVarFlag(append, "_removeactive", False) or []
- removes.append(a)
+ removes.extend(a.split())
self.setVarFlag(append, "_removeactive", removes, ignore=True)
# We save overrides that may be applied at some later stage
OpenPOWER on IntegriCloud