diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-02-13 18:12:30 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-02-13 18:12:30 +0000 |
commit | 9d46c4e5a4fbebcd617ba317ab607bddce03cc76 (patch) | |
tree | 3b44a542bef1b518758859c202404ea81ec8f209 /perl-install/modules | |
parent | 9974d7049f4017c1dc5aa9c359e29c7c6fa4b8a0 (diff) | |
download | drakx-9d46c4e5a4fbebcd617ba317ab607bddce03cc76.tar drakx-9d46c4e5a4fbebcd617ba317ab607bddce03cc76.tar.gz drakx-9d46c4e5a4fbebcd617ba317ab607bddce03cc76.tar.bz2 drakx-9d46c4e5a4fbebcd617ba317ab607bddce03cc76.tar.xz drakx-9d46c4e5a4fbebcd617ba317ab607bddce03cc76.zip |
don't have a wait_message above another empty wait_message when probing hardware
Diffstat (limited to 'perl-install/modules')
-rw-r--r-- | perl-install/modules/interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/modules/interactive.pm b/perl-install/modules/interactive.pm index e898edfea..8a66aa800 100644 --- a/perl-install/modules/interactive.pm +++ b/perl-install/modules/interactive.pm @@ -34,7 +34,7 @@ sub load_category { my @l; { my $w; - my $wait_message = sub { $w = wait_load_module($in, $category, @_) }; + my $wait_message = sub { undef $w; $w = wait_load_module($in, $category, @_) }; @l = modules::load_category($category, $wait_message); undef $w; #- help perl_checker } |