diff options
author | Ross Burton <ross.burton@intel.com> | 2017-11-22 15:56:54 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-12-02 11:24:35 +0000 |
commit | b5837f62c8af94d134cf2160afdfb9e08b3418d1 (patch) | |
tree | 72694c192c9bcbb0bff306eda355c2dc993dd263 | |
parent | bf5627ddbe5371eba62f73c33735fb1cf35c2194 (diff) | |
download | openembedded-core-b5837f62c8af94d134cf2160afdfb9e08b3418d1.tar.gz openembedded-core-b5837f62c8af94d134cf2160afdfb9e08b3418d1.tar.bz2 openembedded-core-b5837f62c8af94d134cf2160afdfb9e08b3418d1.zip |
oeqa/commands: don't break if get_bb_vars is passed a tuple
get_bb_vars was using variables.copy() to duplicate the list of variables passed
but this function only exists in lists [1,2] and not tuples (1,2).
Instead of throwing an exception if the variables are in a tuple, simply
construct a new list using the passed sequence-like object.
Signed-off-by: Ross Burton <ross.burton@intel.com>
-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 0bb90028dc..cad0bea0be 100644 --- a/meta/lib/oeqa/utils/commands.py +++ b/meta/lib/oeqa/utils/commands.py @@ -227,7 +227,7 @@ def get_bb_vars(variables=None, target=None, postconfig=None): bbenv = get_bb_env(target, postconfig=postconfig) if variables is not None: - variables = variables.copy() + variables = list(variables) var_re = re.compile(r'^(export )?(?P<var>\w+(_.*)?)="(?P<value>.*)"$') unset_re = re.compile(r'^unset (?P<var>\w+)$') lastline = None |