diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oeqa/utils/commands.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/lib/oeqa/utils/commands.py b/meta/lib/oeqa/utils/commands.py index 5cd0f7477b..e00c8797aa 100644 --- a/meta/lib/oeqa/utils/commands.py +++ b/meta/lib/oeqa/utils/commands.py | |||
@@ -149,6 +149,7 @@ def get_bb_vars(variables=None, target=None, postconfig=None): | |||
149 | """Get values of multiple bitbake variables""" | 149 | """Get values of multiple bitbake variables""" |
150 | bbenv = get_bb_env(target, postconfig=postconfig) | 150 | bbenv = get_bb_env(target, postconfig=postconfig) |
151 | 151 | ||
152 | variables = variables.copy() | ||
152 | var_re = re.compile(r'^(export )?(?P<var>\w+)="(?P<value>.*)"$') | 153 | var_re = re.compile(r'^(export )?(?P<var>\w+)="(?P<value>.*)"$') |
153 | unset_re = re.compile(r'^unset (?P<var>\w+)$') | 154 | unset_re = re.compile(r'^unset (?P<var>\w+)$') |
154 | lastline = None | 155 | lastline = None |