diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2001-08-30 10:17:36 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2001-08-30 10:17:36 +0000 |
commit | 6dd64bbc857313c6014478a8f030c8f7462e43cc (patch) | |
tree | 36a0486a82dcf062b32b0600e9c4784040718010 /perl-install/install_steps_interactive.pm | |
parent | 31601c5e93d79f6ecd47c0825f88c50f05b23277 (diff) | |
download | drakx-backup-do-not-use-6dd64bbc857313c6014478a8f030c8f7462e43cc.tar drakx-backup-do-not-use-6dd64bbc857313c6014478a8f030c8f7462e43cc.tar.gz drakx-backup-do-not-use-6dd64bbc857313c6014478a8f030c8f7462e43cc.tar.bz2 drakx-backup-do-not-use-6dd64bbc857313c6014478a8f030c8f7462e43cc.tar.xz drakx-backup-do-not-use-6dd64bbc857313c6014478a8f030c8f7462e43cc.zip |
have a wait_message during installation of bootloader
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index cba1dadc2..0ca76a230 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -1057,7 +1057,10 @@ try to force installation even if that destroys the first partition?")); } else { any::setupBootloader($o, $o->{bootloader}, $o->{all_hds}, $o->{fstab}, $o->{security}, $o->{prefix}, $more) or return; - eval { $o->SUPER::setupBootloader }; + { + my $w = $o->wait_message('', _("Installing bootloader")); + eval { $o->SUPER::setupBootloader }; + } if ($@) { $o->ask_warn('', [ _("Installation of bootloader failed. The following error occured:"), |