package_manager.py: Delete installed_pkgs.txt file

This change removes the file installed_pkgs.txt after it
was used for installation of complementary packages. This
file was causing confusion when left in the WORKDIR after
the build.

(From OE-Core rev: d0f3f3a294d509560bd12b93b26eeec65cfee314)

Signed-off-by: Mariano Lopez <mariano.lopez@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Mariano Lopez
2015-11-04 07:50:48 +00:00
committed by Richard Purdie
parent ace895d162
commit 49a465cd23

View File

@@ -625,6 +625,7 @@ class PackageManager(object):
"'%s' returned %d:\n%s" %
(' '.join(cmd), e.returncode, e.output))
self.install(complementary_pkgs.split(), attempt_only=True)
os.remove(installed_pkgs_file)
def deploy_dir_lock(self):
if self.deploy_dir is None: