diff options
author | Francois Pons <fpons@mandriva.com> | 2001-02-08 16:16:41 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2001-02-08 16:16:41 +0000 |
commit | d59fe345e4852b22d7a4b1f64c938aa3b42fbb5e (patch) | |
tree | 1247c4e1f8f6cd920d34518a4a9411fb3d289533 /perl-install/pkgs.pm | |
parent | 260667f99a16d7d435c3cccf0b206de97bc519d5 (diff) | |
download | drakx-d59fe345e4852b22d7a4b1f64c938aa3b42fbb5e.tar drakx-d59fe345e4852b22d7a4b1f64c938aa3b42fbb5e.tar.gz drakx-d59fe345e4852b22d7a4b1f64c938aa3b42fbb5e.tar.bz2 drakx-d59fe345e4852b22d7a4b1f64c938aa3b42fbb5e.tar.xz drakx-d59fe345e4852b22d7a4b1f64c938aa3b42fbb5e.zip |
fixed problem for updating hdlist after going back to partition step.
Diffstat (limited to 'perl-install/pkgs.pm')
-rw-r--r-- | perl-install/pkgs.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm index a9af7f72d..e2365d45a 100644 --- a/perl-install/pkgs.pm +++ b/perl-install/pkgs.pm @@ -336,8 +336,7 @@ sub psUpdateHdlistsDeps { #- parse hdlist.list file. my $medium = 1; - local $_; - while (<$listf>) { + foreach (<$listf>) { chomp; s/\s*#.*$//; /^\s*$/ and next; |