forked from pool/rpmlint
21 lines
935 B
Diff
21 lines
935 B
Diff
--- FilesCheck.py
|
|
+++ FilesCheck.py
|
|
@@ -971,7 +971,7 @@ class FilesCheck(AbstractCheck.AbstractCheck):
|
|
|
|
if not perl_dep_error:
|
|
res=perl_regex.search(f)
|
|
- if res:
|
|
+ if res and not pkg.name in ('perl', 'perl-base'):
|
|
if perl_version_trick:
|
|
vers = res.group(1) + '.' + res.group(2)
|
|
else:
|
|
@@ -981,7 +981,7 @@ class FilesCheck(AbstractCheck.AbstractCheck):
|
|
printError(pkg, 'no-dependency-on', 'perl-base', vers)
|
|
perl_dep_error=1
|
|
|
|
- if not python_dep_error:
|
|
+ if not python_dep_error and not pkg.name in ('python', 'python-base'):
|
|
res=python_regex.search(f)
|
|
if res:
|
|
if not (pkg.check_versioned_dep('python-base', res.group(1)) or
|