forked from pool/rpmlint
eaf5a8d432
Copy from Base:System/rpmlint based on submit request 20532 from user dirkmueller OBS-URL: https://build.opensuse.org/request/show/20532 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/rpmlint?expand=0&rev=46
14 lines
801 B
Diff
14 lines
801 B
Diff
Index: FilesCheck.py
|
|
===================================================================
|
|
--- FilesCheck.py.orig
|
|
+++ FilesCheck.py
|
|
@@ -1162,7 +1162,7 @@ class FilesCheck(AbstractCheck.AbstractC
|
|
interpreter = None
|
|
if res:
|
|
interpreter = res.group(1)
|
|
- if not interpreter_regex.search(interpreter):
|
|
+ if mode & 0111 != 0 and not interpreter_regex.search(interpreter):
|
|
printError(pkg, 'wrong-script-interpreter', f, interpreter)
|
|
elif not nonexec_file and not (lib_path_regex.search(f) and f.endswith('.la')):
|
|
printError(pkg, 'script-without-shebang', f)
|