diff options
author | Peter Kjellerstedt <peter.kjellerstedt@axis.com> | 2022-03-10 22:23:49 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-03-11 06:56:02 +0000 |
commit | 6ad018f213e7b1ba198f0b6a03b5f443bbbcd830 (patch) | |
tree | d400df5eab9fce0b08e5f660c30118a08f2cedfb /scripts | |
parent | e6b6e1c0cf53911805add0ce07d1c371d98bdeb1 (diff) | |
download | poky-6ad018f213e7b1ba198f0b6a03b5f443bbbcd830.tar.gz |
oe-pkgdata-util: Adapt to the new variable override syntax
(From OE-Core rev: 2bf6a0ca9fdf639418646700b20b65c9960efdbe)
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/oe-pkgdata-util | 2 |
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): | |||
296 | extra = '' | 296 | extra = '' |
297 | for line in f: | 297 | for line in f: |
298 | for var in vars: | 298 | for var in vars: |
299 | m = re.match(var + '(?:_\S+)?:\s*(.+?)\s*$', line) | 299 | m = re.match(var + '(?::\S+)?:\s*(.+?)\s*$', line) |
300 | if m: | 300 | if m: |
301 | vals[var] = m.group(1) | 301 | vals[var] = m.group(1) |
302 | pkg_version = vals['PKGV'] or '' | 302 | pkg_version = vals['PKGV'] or '' |