package_manager.py: fix installed package list creation for Opkg/Dpkg

Small error in the package list creation routine. Buildhistory was
supposed to use this but was never called. Hence, it escaped tests...

(From OE-Core rev: eaa1994ad22730cec8e8c57736915da6b45a416e)

Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Laurentiu Palcu 2014-02-19 12:40:24 +02:00 committed by Richard Purdie
parent 84210fd828
commit 1988f7186b
1 changed files with 4 additions and 2 deletions

View File

@ -1134,7 +1134,8 @@ class OpkgPM(PackageManager):
if format == "file":
tmp_output = ""
for pkg, pkg_file, pkg_arch in tuple(output.split('\n')):
for line in output.split('\n'):
pkg, pkg_file, pkg_arch = line.split()
full_path = os.path.join(self.deploy_dir, pkg_arch, pkg_file)
if os.path.exists(full_path):
tmp_output += "%s %s %s\n" % (pkg, full_path, pkg_arch)
@ -1435,7 +1436,8 @@ class DpkgPM(PackageManager):
if format == "file":
tmp_output = ""
for pkg, pkg_file, pkg_arch in tuple(output.split('\n')):
for line in tuple(output.split('\n')):
pkg, pkg_file, pkg_arch = line.split()
full_path = os.path.join(self.deploy_dir, pkg_arch, pkg_file)
if os.path.exists(full_path):
tmp_output += "%s %s %s\n" % (pkg, full_path, pkg_arch)