diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-16 16:01:06 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-17 09:53:04 +0100 |
commit | dd6b55d70c0616e69ecc7366650cd0f7e1678bd8 (patch) | |
tree | d00f23f07f237d833ee7e11df584fa17dd7c41cc /meta/classes/package.bbclass | |
parent | 12e1f9815d7f0bf6dbe22e8e9cff6d1bda9241ce (diff) | |
download | poky-dd6b55d70c0616e69ecc7366650cd0f7e1678bd8.tar.gz |
package/scripts: Fix FILES_INFO handling
There is a long standing bug where FILES_INFO isn't written into pkgdata
with a package suffix. This means if the files are read into the datastore
as intended, the last one "wins".
Fix this to work as intended. Most of the call sites using the data need
to be updated to handle this and the overrides change correctly.
Also fix some other problematic references noticed along the way.
(From OE-Core rev: a1190903e0a61a12c9854c96af918ae8d12c6327)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/package.bbclass')
-rw-r--r-- | meta/classes/package.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index a9138ff6be..fb3c346f69 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass | |||
@@ -1652,7 +1652,7 @@ fi | |||
1652 | if fstat.st_ino not in seen: | 1652 | if fstat.st_ino not in seen: |
1653 | seen.add(fstat.st_ino) | 1653 | seen.add(fstat.st_ino) |
1654 | total_size += fstat.st_size | 1654 | total_size += fstat.st_size |
1655 | d.setVar('FILES_INFO', json.dumps(files, sort_keys=True)) | 1655 | d.setVar('FILES_INFO:' + pkg , json.dumps(files, sort_keys=True)) |
1656 | 1656 | ||
1657 | process_postinst_on_target(pkg, d.getVar("MLPREFIX")) | 1657 | process_postinst_on_target(pkg, d.getVar("MLPREFIX")) |
1658 | add_set_e_to_scriptlets(pkg) | 1658 | add_set_e_to_scriptlets(pkg) |