From 3eba5ff412ca1b693dfa4cef5cf63d5a775a35c8 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Thu, 16 Jun 2016 15:27:34 +0200 Subject: fix inverted test (mga#18656, mga#18704) --- perl-install/NEWS | 1 + perl-install/fs/partitioning_wizard.pm | 2 +- perl-install/install/NEWS | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) 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 -- cgit v1.2.1