From e22c18113b11f557c4502738ccdfbb06093a759a Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Wed, 17 Jun 2015 16:15:32 +0100 Subject: 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. (From OE-Core rev: ff720dd3b77130b2c485d7acad63735fd8751a7d) Signed-off-by: Paul Eggleton Signed-off-by: Richard Purdie --- meta/lib/oeqa/utils/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/lib/oeqa/utils/commands.py') 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): -- cgit v1.2.3-54-g00ecf