convert-overrides.py: 0.9.1 include '(' as delimiter for shortvars

(From OE-Core rev: ffe91649fafa84f814e32c9979e6a2de40a1bb25)

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Martin Jansa 2021-07-30 12:23:07 +02:00 committed by Richard Purdie
parent 6c6dc19467
commit 812ca4cc91

View File

@ -74,7 +74,7 @@ for exp in vars:
shortvars_re = {}
for exp in shortvars:
shortvars_re[exp] = (re.compile('((^|[\'"\s])[A-Za-z0-9_\-:${}]+)_' + exp + '([\'"\s:])'), r"\1:" + exp + r"\3")
shortvars_re[exp] = (re.compile('((^|[\'"\s])[A-Za-z0-9_\-:${}]+)_' + exp + '([\(\'"\s:])'), r"\1:" + exp + r"\3")
package_re = {}
for exp in packagevars:
@ -123,7 +123,7 @@ def processfile(fn):
pass
ourname = os.path.basename(sys.argv[0])
ourversion = "0.9.0"
ourversion = "0.9.1"
for root, dirs, files in os.walk(targetdir):
for name in files: