summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_interactive.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2005-03-22 15:40:26 +0000
committerPascal Rigaux <pixel@mandriva.com>2005-03-22 15:40:26 +0000
commitc5f58bce3b98ecb048178115a64b98dd725fee38 (patch)
tree7482ec95952eca9ecf9f94852ddc7bce44d001da /perl-install/install_steps_interactive.pm
parent5553f32694fd91a8f9aeb414341dfced71bea23f (diff)
downloaddrakx-backup-do-not-use-c5f58bce3b98ecb048178115a64b98dd725fee38.tar
drakx-backup-do-not-use-c5f58bce3b98ecb048178115a64b98dd725fee38.tar.gz
drakx-backup-do-not-use-c5f58bce3b98ecb048178115a64b98dd725fee38.tar.bz2
drakx-backup-do-not-use-c5f58bce3b98ecb048178115a64b98dd725fee38.tar.xz
drakx-backup-do-not-use-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.pm2
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});
},
};