whitelist rpmlint-Factory too

This commit is contained in:
Stephan Kulow 2014-01-30 21:26:15 +01:00
parent c628e8eab0
commit 96fe152046

View File

@ -34,7 +34,7 @@ for my $pdir (glob("$dir/*")) {
if (! -f "$pdir/rpmlint.log") {
print "Couldn't find a rpmlint.log in the build results in $pdir. This is mandatory\n";
my $name = basename($pdir);
if ($name eq "rpm" || $name eq "rpm-python" || $name eq "popt" || $name eq "rpmlint" ) {
if ($name eq "rpm" || $name eq "rpm-python" || $name eq "popt" || $name eq "rpmlint" || $name eq "rpmlint-Factory" ) {
print "ignoring - whitelist\n";
} else {
$ret = 1;