SHA256
1
0
forked from pool/rpmlint
rpmlint/no-badness-return.diff
OBS User autobuild 5e20a03ee9 Accepting request 30231 from Base:System
Copy from Base:System/rpmlint based on submit request 30231 from user lnussel

OBS-URL: https://build.opensuse.org/request/show/30231
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/rpmlint?expand=0&rev=50
2010-01-27 17:18:50 +00:00

23 lines
650 B
Diff

--- rpmlint.py
+++ rpmlint.py
@@ -190,7 +190,7 @@
% (packages_checked, specfiles_checked,
printed_messages["E"], printed_messages["W"])
- if printed_messages["E"] > 0:
+ if badnessThreshold() < 0 and printed_messages["E"] > 0:
sys.exit(64)
sys.exit(0)
--- Filter.py
+++ Filter.py
@@ -96,7 +96,7 @@
if len(last_reason):
printDescriptions(last_reason)
last_reason = reason
- Pkg.rlprint(diag)
+ Pkg.rlprint(diag[:-1])
if Config.info and len(last_reason):
printDescriptions(last_reason)
_diagnostic = list()