diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-11-18 16:44:52 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-11-18 16:44:52 +0000 |
commit | e9746d5b1868e7ecdbabce94c47325e05c2f666d (patch) | |
tree | 0c1d2ca28c1c3c7fbddb81d4b3d29572895bded7 /perl-install/pkgs.pm | |
parent | c7a67d1bcbcffaadbbb06be8f11e78e7508eed02 (diff) | |
download | drakx-e9746d5b1868e7ecdbabce94c47325e05c2f666d.tar drakx-e9746d5b1868e7ecdbabce94c47325e05c2f666d.tar.gz drakx-e9746d5b1868e7ecdbabce94c47325e05c2f666d.tar.bz2 drakx-e9746d5b1868e7ecdbabce94c47325e05c2f666d.tar.xz drakx-e9746d5b1868e7ecdbabce94c47325e05c2f666d.zip |
make perl_checker happy
Diffstat (limited to 'perl-install/pkgs.pm')
-rw-r--r-- | perl-install/pkgs.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm index a5e9b119b..111139316 100644 --- a/perl-install/pkgs.pm +++ b/perl-install/pkgs.pm @@ -676,7 +676,7 @@ sub computeGroupSize { #- installed and upgrade flags must have been computed (see compute_installed_flags). my %newSelection; unless ($p->flag_available) { - my @l2 = ($p->id); + my @l2 = $p->id; my $id; while (defined($id = shift @l2)) { @@ -864,7 +864,7 @@ sub installTransactionClosure { } while (defined($id = shift @l)) { - my @l2 = ($id); + my @l2 = $id; while (defined($id = shift @l2)) { exists $closure{$id} and next; |