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:50:31 +0000 |
commit | 628c4bce36ca0bc2b316ec78cf58b02a42e7f35f (patch) | |
tree | c45c0cb2d4881c5b7e8d30dd6394a16735e7c964 /meta/lib | |
parent | d50a40100763dcbfabec2c147fdfcb46aa909329 (diff) | |
download | openembedded-core-contrib-628c4bce36ca0bc2b316ec78cf58b02a42e7f35f.tar.gz |
lib/oe/rootfs.py: OpkgRootfs, fix issue in _get_delayed_postinsts()
Status file path was not created correctly.
Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Diffstat (limited to 'meta/lib')
-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 001c48afcef..95c275875f1 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: |