aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/lib/oe/rootfs.py2
1 files changed, 1 insertions, 1 deletions
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: