2013-06-28 15:29:34 +02:00
|
|
|
Index: rpmlint-1.5/FilesCheck.py
|
2013-02-26 12:08:19 +01:00
|
|
|
===================================================================
|
2013-06-28 15:29:34 +02:00
|
|
|
--- rpmlint-1.5.orig/FilesCheck.py
|
|
|
|
+++ rpmlint-1.5/FilesCheck.py
|
|
|
|
@@ -1404,7 +1404,7 @@ class FilesCheck(AbstractCheck.AbstractC
|
2012-12-07 18:20:22 +01:00
|
|
|
for exe, paths in bindir_exes.items():
|
|
|
|
if len(paths) > 1:
|
|
|
|
printWarning(pkg, "duplicate-executable", exe, paths)
|
|
|
|
- if exe not in man_basenames:
|
|
|
|
+ if exe not in man_basenames and not exe.startswith("rc") and len(paths) is not 0:
|
|
|
|
printWarning(pkg, "no-manual-page-for-binary", exe)
|
|
|
|
|
|
|
|
# Create an object to enable the auto registration of the test
|