]> code.ossystems Code Review - openembedded-core.git/commitdiff
wic: accept '-' in bitbake variables
authorEnrico Scholz <enrico.scholz@ensc.de>
Fri, 8 Sep 2017 17:33:01 +0000 (19:33 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 17 Sep 2017 22:38:07 +0000 (23:38 +0100)
'-' is valid and common in bitbake variables (e.g. 'FOO_pn-bar'). Accept
it and other characters when reading the .env file.

Also, allow variables to be empty.

(From OE-Core rev: e688ac8e92d2bc451d8b2d437596f630bedccd2c)

Signed-off-by: Enrico Scholz <enrico.scholz@ensc.de>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/lib/wic/misc.py

index 4e07cd659c07ead33613b41d4b620db10ed01dc9..0792480f86944ed8ff20b4d9562cac65fe47114d 100644 (file)
@@ -183,7 +183,7 @@ class BitbakeVars(defaultdict):
         self.default_image = None
         self.vars_dir = None
 
-    def _parse_line(self, line, image, matcher=re.compile(r"^(\w+)=(.+)")):
+    def _parse_line(self, line, image, matcher=re.compile(r"^([a-zA-Z0-9\-_+./~]+)=(.*)")):
         """
         Parse one line from bitbake -e output or from .env file.
         Put result key-value pair into the storage.