diff options
-rw-r--r-- | perl-install/install_any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index 38327f8bf..537f0d536 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -598,7 +598,7 @@ sub install_urpmi { #- build list file using internal data, synthesis file should exists. #- WARNING this method of build only works because synthesis (or hdlist) #- has been read. - foreach my $pkg (@{$packages->{depslist}}[$_->{start} .. $_->{end}]) { + foreach (@{$packages->{depslist}}[$_->{start} .. $_->{end}]) { print LIST "$dir/".$_->filename."\n"; } close LIST; |