summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/utils/package_manager.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/utils/package_manager.py')
-rw-r--r--meta/lib/oeqa/utils/package_manager.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/meta/lib/oeqa/utils/package_manager.py b/meta/lib/oeqa/utils/package_manager.py
index afd5b8e75f..1495f87321 100644
--- a/meta/lib/oeqa/utils/package_manager.py
+++ b/meta/lib/oeqa/utils/package_manager.py
@@ -22,13 +22,15 @@ def get_package_manager(d, root_path):
22 pm = OpkgPM(d, 22 pm = OpkgPM(d,
23 root_path, 23 root_path,
24 d.getVar("IPKGCONF_TARGET"), 24 d.getVar("IPKGCONF_TARGET"),
25 d.getVar("ALL_MULTILIB_PACKAGE_ARCHS")) 25 d.getVar("ALL_MULTILIB_PACKAGE_ARCHS"),
26 filterbydependencies=False)
26 27
27 elif pkg_class == "deb": 28 elif pkg_class == "deb":
28 pm = DpkgPM(d, 29 pm = DpkgPM(d,
29 root_path, 30 root_path,
30 d.getVar('PACKAGE_ARCHS'), 31 d.getVar('PACKAGE_ARCHS'),
31 d.getVar('DPKG_ARCH')) 32 d.getVar('DPKG_ARCH'),
33 filterbydependencies=False)
32 34
33 pm.write_index() 35 pm.write_index()
34 pm.update() 36 pm.update()