summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/lib/oe/rootfs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py
index c4735f2755..f99626ccfa 100644
--- a/meta/lib/oe/rootfs.py
+++ b/meta/lib/oe/rootfs.py
@@ -348,7 +348,7 @@ class RpmRootfs(Rootfs):
348 pass 348 pass
349 349
350 def _log_check_warn(self): 350 def _log_check_warn(self):
351 r = re.compile('(warn|Warn)') 351 r = re.compile('^(warn|Warn|NOTE: warn|NOTE: Warn)')
352 log_path = self.d.expand("${T}/log.do_rootfs") 352 log_path = self.d.expand("${T}/log.do_rootfs")
353 with open(log_path, 'r') as log: 353 with open(log_path, 'r') as log:
354 for line in log.read().split('\n'): 354 for line in log.read().split('\n'):