diff options
author | Laurentiu Palcu <laurentiu.palcu@intel.com> | 2014-01-30 21:55:32 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-11 11:53:43 +0000 |
commit | d3a3b87ad97c6eb63f5585e8dbe49708a9f6972a (patch) | |
tree | e8b4820969f7fa2dcd72e1bf5d985e3704ce7a12 /meta/lib/oe | |
parent | 365b77909d8b58b8827474f6b1c68067a21ed27f (diff) | |
download | poky-d3a3b87ad97c6eb63f5585e8dbe49708a9f6972a.tar.gz |
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>
Diffstat (limited to 'meta/lib/oe')
-rw-r--r-- | meta/lib/oe/rootfs.py | 2 |
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): | |||
562 | def _get_delayed_postinsts(self): | 562 | def _get_delayed_postinsts(self): |
563 | pkg_list = [] | 563 | pkg_list = [] |
564 | status_file = os.path.join(self.image_rootfs, | 564 | status_file = os.path.join(self.image_rootfs, |
565 | self.d.getVar('OPKGLIBDIR', True), | 565 | self.d.getVar('OPKGLIBDIR', True).strip('/'), |
566 | "opkg", "status") | 566 | "opkg", "status") |
567 | 567 | ||
568 | with open(status_file) as status: | 568 | with open(status_file) as status: |