diff options
author | Mariano Lopez <mariano.lopez@linux.intel.com> | 2015-11-04 07:50:48 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-11-24 15:55:42 +0000 |
commit | 49a465cd2370084917b9271cb6815240993a2d8b (patch) | |
tree | 005b81b87b6605a7453a6c9c3511f60e3d57e9e3 /meta/lib/oe | |
parent | ace895d162a5c0c913e38dbadb9e95ec70adabeb (diff) | |
download | poky-49a465cd2370084917b9271cb6815240993a2d8b.tar.gz |
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>
Diffstat (limited to 'meta/lib/oe')
-rw-r--r-- | meta/lib/oe/package_manager.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/lib/oe/package_manager.py b/meta/lib/oe/package_manager.py index 964fddcda2..bc334736a4 100644 --- a/meta/lib/oe/package_manager.py +++ b/meta/lib/oe/package_manager.py | |||
@@ -625,6 +625,7 @@ class PackageManager(object): | |||
625 | "'%s' returned %d:\n%s" % | 625 | "'%s' returned %d:\n%s" % |
626 | (' '.join(cmd), e.returncode, e.output)) | 626 | (' '.join(cmd), e.returncode, e.output)) |
627 | self.install(complementary_pkgs.split(), attempt_only=True) | 627 | self.install(complementary_pkgs.split(), attempt_only=True) |
628 | os.remove(installed_pkgs_file) | ||
628 | 629 | ||
629 | def deploy_dir_lock(self): | 630 | def deploy_dir_lock(self): |
630 | if self.deploy_dir is None: | 631 | if self.deploy_dir is None: |