diff options
author | Francois Pons <fpons@mandriva.com> | 2002-09-02 12:19:11 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2002-09-02 12:19:11 +0000 |
commit | f7cdf52d7c9c1104f77a11623dc536695473f26b (patch) | |
tree | 97055563e6146376eb69ddd51038e718da967fb6 /perl-install/install_any.pm | |
parent | 015b8d2c26f422af121ce694796c094b8aef6ca0 (diff) | |
download | drakx-f7cdf52d7c9c1104f77a11623dc536695473f26b.tar drakx-f7cdf52d7c9c1104f77a11623dc536695473f26b.tar.gz drakx-f7cdf52d7c9c1104f77a11623dc536695473f26b.tar.bz2 drakx-f7cdf52d7c9c1104f77a11623dc536695473f26b.tar.xz drakx-f7cdf52d7c9c1104f77a11623dc536695473f26b.zip |
fixed typo.
Diffstat (limited to 'perl-install/install_any.pm')
-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; |