aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2015-12-01 15:55:40 +1300
committerPaul Eggleton <paul.eggleton@linux.intel.com>2016-12-13 10:54:58 +1300
commit18d260f575f3463216016834f1cdff367d714180 (patch)
treedd28bc44aaf8f11ffb9b941c2e5b2eab7dd568c2
parentd62f18c39bc0ed3b0f5ac8465b393c15f2143ecf (diff)
downloadopenembedded-core-contrib-18d260f575f3463216016834f1cdff367d714180.tar.gz
lib/oe/rootfs: fix log_check warnings being printed twice with RPM packaging
We were calling _log_check() in the RPM-specific rootfs class as well as in the base class; this is unnecessary and resulted in any errors/warnings generated during the actual package installation time triggering two warnings instead of one. Drop the call from RpmRootfs._create() to fix this. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
-rw-r--r--meta/lib/oe/rootfs.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py
index a348b975c2..ed40b23ee4 100644
--- a/meta/lib/oe/rootfs.py
+++ b/meta/lib/oe/rootfs.py
@@ -477,8 +477,6 @@ class RpmRootfs(Rootfs):
execute_pre_post_process(self.d, rpm_post_process_cmds)
- self._log_check()
-
if self.inc_rpm_image_gen == "1":
self.pm.backup_packaging_data()