From: Martin Jansa Date: Thu, 23 Mar 2017 12:21:22 +0000 (+0100) Subject: rootfs.py: Respect OPKGLIBDIR variable X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~21917 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bebdb056c8bd0efc056f07b275a154e5d5a3aa2b;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git rootfs.py: Respect OPKGLIBDIR variable * when OPKGLIBDIR doesn't have the default /var/lib value it will silently fail to copy package database from normal rootfs to debugfs rootfs and then when trying to install *-dbg complimentary packages it won't install anything, because installed_pkgs.txt file generated from debugfs is empty Signed-off-by: Martin Jansa Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py index 5e1c09762ab..96591f370e6 100644 --- a/meta/lib/oe/rootfs.py +++ b/meta/lib/oe/rootfs.py @@ -946,7 +946,9 @@ class OpkgRootfs(DpkgOpkgRootfs): if self.progress_reporter: self.progress_reporter.next_stage() - self._setup_dbg_rootfs(['/var/lib/opkg']) + opkg_lib_dir = self.d.getVar('OPKGLIBDIR') + opkg_dir = os.path.join(opkg_lib_dir, 'opkg') + self._setup_dbg_rootfs([opkg_dir]) execute_pre_post_process(self.d, opkg_post_process_cmds)