summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorPeter Kjellerstedt <peter.kjellerstedt@axis.com>2022-03-10 22:23:49 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-03-11 06:54:39 +0000
commit2bf6a0ca9fdf639418646700b20b65c9960efdbe (patch)
tree1ec04b5b39894253edeef47493758153a0fb069c /scripts
parent5637ebe76885c21c2c3f975b4f412b02f9e02456 (diff)
downloadopenembedded-core-contrib-2bf6a0ca9fdf639418646700b20b65c9960efdbe.tar.gz
oe-pkgdata-util: Adapt to the new variable override syntax
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/oe-pkgdata-util2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/oe-pkgdata-util b/scripts/oe-pkgdata-util
index 71656dadce..7412cc1f47 100755
--- a/scripts/oe-pkgdata-util
+++ b/scripts/oe-pkgdata-util
@@ -296,7 +296,7 @@ def package_info(args):
extra = ''
for line in f:
for var in vars:
- m = re.match(var + '(?:_\S+)?:\s*(.+?)\s*$', line)
+ m = re.match(var + '(?::\S+)?:\s*(.+?)\s*$', line)
if m:
vals[var] = m.group(1)
pkg_version = vals['PKGV'] or ''