diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-03-22 15:40:26 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-03-22 15:40:26 +0000 |
commit | c5f58bce3b98ecb048178115a64b98dd725fee38 (patch) | |
tree | 7482ec95952eca9ecf9f94852ddc7bce44d001da /perl-install/install_steps_interactive.pm | |
parent | 5553f32694fd91a8f9aeb414341dfced71bea23f (diff) | |
download | drakx-c5f58bce3b98ecb048178115a64b98dd725fee38.tar drakx-c5f58bce3b98ecb048178115a64b98dd725fee38.tar.gz drakx-c5f58bce3b98ecb048178115a64b98dd725fee38.tar.bz2 drakx-c5f58bce3b98ecb048178115a64b98dd725fee38.tar.xz drakx-c5f58bce3b98ecb048178115a64b98dd725fee38.zip |
handle the return value of any::setupBootloader() (bugzilla #13641)
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 698889121..c0b1b2d98 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -1113,7 +1113,7 @@ sub summary { N("%s on %s", $o->{bootloader}{method}, $o->{bootloader}{boot}); }, clicked => sub { - any::setupBootloader($o, $o->{bootloader}, $o->{all_hds}, $o->{fstab}, $o->{security}); + any::setupBootloader($o, $o->{bootloader}, $o->{all_hds}, $o->{fstab}, $o->{security}) or return; any::installBootloader($o, $o->{bootloader}, $o->{all_hds}); }, }; |