From 6dd64bbc857313c6014478a8f030c8f7462e43cc Mon Sep 17 00:00:00 2001 From: Guillaume Cottenceau Date: Thu, 30 Aug 2001 10:17:36 +0000 Subject: have a wait_message during installation of bootloader --- perl-install/install_steps_interactive.pm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'perl-install') 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:"), -- cgit v1.2.1