diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-11-14 23:40:08 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-11-14 23:40:08 +0000 |
commit | a4e14fec987246dde7e9f757a9ae9e1834080d33 (patch) | |
tree | 5b86b4cf5005887e22276a5693b0f548a877e3e9 /perl-install/pkgs.pm | |
parent | 78e8097c578fb334c7440a5459fdb7aecc827feb (diff) | |
download | drakx-a4e14fec987246dde7e9f757a9ae9e1834080d33.tar drakx-a4e14fec987246dde7e9f757a9ae9e1834080d33.tar.gz drakx-a4e14fec987246dde7e9f757a9ae9e1834080d33.tar.bz2 drakx-a4e14fec987246dde7e9f757a9ae9e1834080d33.tar.xz drakx-a4e14fec987246dde7e9f757a9ae9e1834080d33.zip |
make perl_checker happy
Diffstat (limited to 'perl-install/pkgs.pm')
-rw-r--r-- | perl-install/pkgs.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm index 6f48312f1..a5e9b119b 100644 --- a/perl-install/pkgs.pm +++ b/perl-install/pkgs.pm @@ -474,7 +474,7 @@ sub read_rpmsrate { (?:\s+|$) )(.*)/x) { #@")) { ($t, $flag, $data) = ($1,$2,$3); - while ($flag =~ s,^\s*(("[^"]*"|[^"\s]*)*)\s+,$1,) { } + while ($flag =~ s,^\s*(("[^"]*"|[^"\s]*)*)\s+,$1,) {} my $ok = 0; $flag = join('||', grep { if (my ($inv, $p) = /^(!)?HW"(.*)"/) { |