diff options
Diffstat (limited to 'meta/lib/oe')
-rw-r--r-- | meta/lib/oe/package_manager.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/lib/oe/package_manager.py b/meta/lib/oe/package_manager.py index 0460415699..fffe11d150 100644 --- a/meta/lib/oe/package_manager.py +++ b/meta/lib/oe/package_manager.py | |||
@@ -446,6 +446,8 @@ class DpkgPkgsList(PkgsList): | |||
446 | if format == "file": | 446 | if format == "file": |
447 | tmp_output = "" | 447 | tmp_output = "" |
448 | for line in tuple(output.split('\n')): | 448 | for line in tuple(output.split('\n')): |
449 | if not line.strip(): | ||
450 | continue | ||
449 | pkg, pkg_file, pkg_arch = line.split() | 451 | pkg, pkg_file, pkg_arch = line.split() |
450 | full_path = os.path.join(self.rootfs_dir, pkg_arch, pkg_file) | 452 | full_path = os.path.join(self.rootfs_dir, pkg_arch, pkg_file) |
451 | if os.path.exists(full_path): | 453 | if os.path.exists(full_path): |