diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2015-06-17 16:15:32 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-18 09:12:01 +0100 |
commit | ff720dd3b77130b2c485d7acad63735fd8751a7d (patch) | |
tree | 7e6bb322eb430404dda4935f0d04c7e8ac54b9a8 /meta | |
parent | d1b3b384754089e62f6a4c7964690ae6c8d20a96 (diff) | |
download | openembedded-core-ff720dd3b77130b2c485d7acad63735fd8751a7d.tar.gz openembedded-core-ff720dd3b77130b2c485d7acad63735fd8751a7d.tar.bz2 openembedded-core-ff720dd3b77130b2c485d7acad63735fd8751a7d.zip |
lib/oeqa/utils/commands: ensure get_bb_var() works when value contains =
Only split on the first equals character so that values that contain
equals characters (such as FAKEROOTENV) can be retrieved.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oeqa/utils/commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/utils/commands.py b/meta/lib/oeqa/utils/commands.py index dc8a9836e7..1be7bedd40 100644 --- a/meta/lib/oeqa/utils/commands.py +++ b/meta/lib/oeqa/utils/commands.py @@ -141,7 +141,7 @@ def get_bb_var(var, target=None, postconfig=None): lastline = None for line in bbenv.splitlines(): if re.search("^(export )?%s=" % var, line): - val = line.split('=')[1] + val = line.split('=', 1)[1] val = val.strip('\"') break elif re.match("unset %s$" % var, line): |