diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-02-20 20:04:11 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-02-20 20:04:11 +0000 |
commit | 3d398ea7989c9387bc6c100d314088a58c88ea23 (patch) | |
tree | 0dd6f8310ea461cf44ee4a59052216750a51ea95 | |
parent | 9cd327666f087566dc256cc89cd77b5eaa35b73a (diff) | |
download | drakx-3d398ea7989c9387bc6c100d314088a58c88ea23.tar drakx-3d398ea7989c9387bc6c100d314088a58c88ea23.tar.gz drakx-3d398ea7989c9387bc6c100d314088a58c88ea23.tar.bz2 drakx-3d398ea7989c9387bc6c100d314088a58c88ea23.tar.xz drakx-3d398ea7989c9387bc6c100d314088a58c88ea23.zip |
allow Cancel in setupBootloader__entries
-rw-r--r-- | perl-install/any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index c4325e74f..65a0a1367 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -142,7 +142,7 @@ sub setupBootloader { setupBootloader__general($in, $b, $all_hds, $fstab, $security) or return 0; setupBootloader__boot_bios_drive($in, $b, $hds) or goto general; - setupBootloader__entries($in, $b, $all_hds, $fstab); #- need to add a goto general here ? or Add, Modify, Remove is different ? + setupBootloader__entries($in, $b, $all_hds, $fstab) or goto general; #- somewhere should bootloader really installed ? bootloader::install($b, $fstab, $hds); |