summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oeqa/utils/commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/utils/commands.py b/meta/lib/oeqa/utils/commands.py
index 2951dfb49c..57286fcb10 100644
--- a/meta/lib/oeqa/utils/commands.py
+++ b/meta/lib/oeqa/utils/commands.py
@@ -165,7 +165,7 @@ def get_bb_vars(variables=None, target=None, postconfig=None):
165 165
166 if variables is not None: 166 if variables is not None:
167 variables = variables.copy() 167 variables = variables.copy()
168 var_re = re.compile(r'^(export )?(?P<var>\w+)="(?P<value>.*)"$') 168 var_re = re.compile(r'^(export )?(?P<var>\w+(_.*)?)="(?P<value>.*)"$')
169 unset_re = re.compile(r'^unset (?P<var>\w+)$') 169 unset_re = re.compile(r'^unset (?P<var>\w+)$')
170 lastline = None 170 lastline = None
171 values = {} 171 values = {}