summaryrefslogtreecommitdiffstats
path: root/meta/lib/oe/package_manager.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oe/package_manager.py')
-rw-r--r--meta/lib/oe/package_manager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/package_manager.py b/meta/lib/oe/package_manager.py
index 02cf2b7621..392fe7e372 100644
--- a/meta/lib/oe/package_manager.py
+++ b/meta/lib/oe/package_manager.py
@@ -864,7 +864,7 @@ class RpmPM(PackageManager):
864 864
865 failed_scriptlets_pkgnames = collections.OrderedDict() 865 failed_scriptlets_pkgnames = collections.OrderedDict()
866 for line in output.splitlines(): 866 for line in output.splitlines():
867 if line.startswith("Non-fatal POSTIN scriptlet failure in rpm package"): 867 if line.startswith("Error in POSTIN scriptlet in rpm package"):
868 failed_scriptlets_pkgnames[line.split()[-1]] = True 868 failed_scriptlets_pkgnames[line.split()[-1]] = True
869 869
870 if len(failed_scriptlets_pkgnames) > 0: 870 if len(failed_scriptlets_pkgnames) > 0: