diff options
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index c844e5a9c..be0c64839 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -1064,7 +1064,8 @@ You may have to restart installation and give ``%s'' at the prompt", $ide)); } } - modules::load_thiskind($type, sub { $w = wait_load_module($o, $type, @_) }, $pcmcia); + eval { modules::load_thiskind($type, sub { $w = wait_load_module($o, $type, @_) }, $pcmcia) }; + $@ and $o->errorInStep($@); } #------------------------------------------------------------------------------ |