diff options
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/fs/partitioning_wizard.pm | 2 | ||||
-rw-r--r-- | perl-install/install/NEWS | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index a7254893a..0bba8c438 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,5 +1,6 @@ - diskdrake: o fix offering to create a GRUB_BIOS partition in custom mode (mga#18656) + o fix inverted test when checking need for a GRUB_BIOS partition (mga#18704) Version 17.37 - 12 June 2016 diff --git a/perl-install/fs/partitioning_wizard.pm b/perl-install/fs/partitioning_wizard.pm index a48cdf987..6c709bc24 100644 --- a/perl-install/fs/partitioning_wizard.pm +++ b/perl-install/fs/partitioning_wizard.pm @@ -78,7 +78,7 @@ Then choose action ``Mount point'' and set it to `/'"), 1) or return; $ok = ''; } } else { - if (!fs::any::is_boot_bios_part_needed($all_hds, $fstab)) { + if (fs::any::is_boot_bios_part_needed($all_hds, $fstab)) { $in->ask_warn('', N("You must have a Boot BIOS partition")); $ok = ''; } diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index e31dc8206..0f6d7787e 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,5 +1,6 @@ - partionning: o fix offering to create a GRUB_BIOS partition in custom mode (mga#18656) + o fix inverted test when checking need for a GRUB_BIOS partition (mga#18704) Version 17.37 - 12 June 2016 |