diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-05-21 15:29:40 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-05-29 13:18:24 +0100 |
commit | 7631f6bbfc0678899324a46ee3f966f965bb0d60 (patch) | |
tree | 97da5a3a0030824510bb87d735d736b11caa2104 /meta/classes | |
parent | 08e2f06d36ceaec36a8d5af92f4c22439cf0d225 (diff) | |
download | poky-7631f6bbfc0678899324a46ee3f966f965bb0d60.tar.gz |
bitbake: data_smart: Fix an unusual variable reference bug
If you try:
Y = ""
Y_remove = "X"
in OE-Core, bitbake will crash with a KeyError during expansion. The reason
is that no expansion of the empty value is attempted but removal from is it
and hence no varparse data is present for it in the expand_cache.
If the value is empty, there is nothing to remove so the best fix is simply
not to check for None but check it has any value.
Also add a test for this error so it doesn't get reintroduced.
(Bitbake rev: af3ce0fc0280e6642fa35de400f75fdbabf329b1)
(Bitbake rev: 2d3478c97b7c7a2f5b12a8be302d8ea5ba4e1277)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
0 files changed, 0 insertions, 0 deletions