mirror of
https://git.yoctoproject.org/poky
synced 2026-04-10 23:02:25 +02:00
lib/oe/rootfs.py: OpkgRootfs, fix issue in _get_delayed_postinsts()
Status file path was not created correctly. (From OE-Core rev: 628c4bce36ca0bc2b316ec78cf58b02a42e7f35f) Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
365b77909d
commit
d3a3b87ad9
@@ -562,7 +562,7 @@ class OpkgRootfs(Rootfs):
|
||||
def _get_delayed_postinsts(self):
|
||||
pkg_list = []
|
||||
status_file = os.path.join(self.image_rootfs,
|
||||
self.d.getVar('OPKGLIBDIR', True),
|
||||
self.d.getVar('OPKGLIBDIR', True).strip('/'),
|
||||
"opkg", "status")
|
||||
|
||||
with open(status_file) as status:
|
||||
|
||||
Reference in New Issue
Block a user