diff options
Diffstat (limited to 'src-rpm-list')
-rwxr-xr-x | src-rpm-list | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-rpm-list b/src-rpm-list index e5a8bf9..984fe4f 100755 --- a/src-rpm-list +++ b/src-rpm-list @@ -25,7 +25,7 @@ my @skip = $skipfile ? chomp_(cat_($skipfile)) : (); my @pkgs = grep { my $res = 1; foreach my $skipre (@skip) { - if ($_ =~ m/^$skipre$/) { + if (m/^$skipre$/) { $res = 0; last; } |