From 628c4bce36ca0bc2b316ec78cf58b02a42e7f35f Mon Sep 17 00:00:00 2001 From: Laurentiu Palcu Date: Thu, 30 Jan 2014 21:55:32 +0200 Subject: lib/oe/rootfs.py: OpkgRootfs, fix issue in _get_delayed_postinsts() Status file path was not created correctly. Signed-off-by: Laurentiu Palcu --- meta/lib/oe/rootfs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta') diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py index 001c48afce..95c275875f 100644 --- a/meta/lib/oe/rootfs.py +++ b/meta/lib/oe/rootfs.py @@ -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: -- cgit 1.2.3-korg