summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 f7f8c16bf00..917048cafdd 100644
--- a/meta/lib/oeqa/utils/commands.py
+++ b/meta/lib/oeqa/utils/commands.py
@@ -239,7 +239,7 @@ def get_bb_vars(variables=None, target=None, postconfig=None):
if variables is not None:
variables = list(variables)
var_re = re.compile(r'^(export )?(?P<var>\w+(_.*)?)="(?P<value>.*)"$')
- unset_re = re.compile(r'^unset (?P<var>\w+)$')
+ unset_re = re.compile(r'^unset (?P<var>\w+)')
lastline = None
values = {}
for line in bbenv.splitlines():