forked from pool/rpmlint
Dirk Mueller
15bad7fc73
* New Homepage * Plenty of new checks - add compressed-backup-regex.diff - remove python3_magic_number_fix.diff OBS-URL: https://build.opensuse.org/package/show/devel:openSUSE:Factory:rpmlint/rpmlint?expand=0&rev=189
16 lines
674 B
Diff
16 lines
674 B
Diff
Index: SpecCheck.py
|
|
===================================================================
|
|
--- SpecCheck.py.orig
|
|
+++ SpecCheck.py
|
|
@@ -234,7 +234,9 @@ class SpecCheck(AbstractCheck.AbstractCh
|
|
|
|
continue
|
|
|
|
- if current_section in ('prep', 'build') and \
|
|
+ if current_section in ('prep', 'build','pre', 'post', 'postun',
|
|
+ 'trigger', 'triggerin', 'triggerprein', 'triggerun', 'triggerpostun',
|
|
+ 'pretrans', 'posttrans') and \
|
|
contains_buildroot(line):
|
|
printWarning(pkg, 'rpm-buildroot-usage', '%' + current_section,
|
|
line[:-1].strip())
|