diff options
author | Randy Witt <randy.e.witt@linux.intel.com> | 2016-04-06 23:55:39 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-04-09 23:00:46 +0100 |
commit | e1e459e480bc6a530cec6ed2718ce52d5ef93149 (patch) | |
tree | 2b1e2209ac5136e59a32f8f84e4df655115c9da0 /bitbake/lib/bb/server | |
parent | 43150ab7ec63d804e8a998ecee9d00295b8b2bc7 (diff) | |
download | poky-e1e459e480bc6a530cec6ed2718ce52d5ef93149.tar.gz |
bitbake: lib/bb/utils.py: Fix a bug in edit_metadata() that could corrupt vars
edit_metadata() would corrupt a variable that was multiline, but
had the ending quotes on the same line as the last value. For example:
TEST_VAR = " foo \
bar"
would become " foo ba" because the code would always delete the last
character on the line and then do it again if the line ended in the
quote. This however doesn't show up if you have:
TEST_VAR = " foo \
bar \
"
which is how all the test cases were written.
This patch fixes that bug and adds and fixes a test that matched the bugs
behavior rather than the expected behavior.
(Bitbake rev: 14f05cbdc2ad8d59a94af1c8816567d93c39c88c)
Signed-off-by: Randy Witt <randy.e.witt@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/server')
0 files changed, 0 insertions, 0 deletions