summaryrefslogtreecommitdiffstats
path: root/perl-install/pkgs.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-11-11 13:40:09 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-11-11 13:40:09 +0000
commit2db19d156087ccce3037b2bd2da1042280e17904 (patch)
tree0acaff93899445e13d78facbd0aa0da28558a04f /perl-install/pkgs.pm
parentc1e398be894ecce6394bd76c99b76c022979ac62 (diff)
downloaddrakx-backup-do-not-use-2db19d156087ccce3037b2bd2da1042280e17904.tar
drakx-backup-do-not-use-2db19d156087ccce3037b2bd2da1042280e17904.tar.gz
drakx-backup-do-not-use-2db19d156087ccce3037b2bd2da1042280e17904.tar.bz2
drakx-backup-do-not-use-2db19d156087ccce3037b2bd2da1042280e17904.tar.xz
drakx-backup-do-not-use-2db19d156087ccce3037b2bd2da1042280e17904.zip
- do not use "foreach $var (...) {...}" use "foreach my $var (...) {...}" instead
(only pb are functions called in {...} that could use $var, none found except in commands.pm) - various small syntax enhancements to please perl_checker
Diffstat (limited to 'perl-install/pkgs.pm')
-rw-r--r--perl-install/pkgs.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm
index 816858360..1f55bed41 100644
--- a/perl-install/pkgs.pm
+++ b/perl-install/pkgs.pm
@@ -843,7 +843,7 @@ sub installTransactionClosure {
$l[0] >= $_->{start} and $medium = $_, last;
#- ... but it could be necessary to find the first
#- medium containing package of @l.
- foreach $id (@l) {
+ foreach my $id (@l) {
$id >= $_->{start} && $id <= $_->{end} and $medium = $_, last;
}
$medium and last;