diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-06-16 15:27:34 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-06-16 15:36:41 +0200 |
commit | 3eba5ff412ca1b693dfa4cef5cf63d5a775a35c8 (patch) | |
tree | 5e784937bbe9327d0137fd873ec73e915d08ca7e | |
parent | 4870492cea87ab97d2757c8597f4517af6dfdfa9 (diff) | |
download | drakx-3eba5ff412ca1b693dfa4cef5cf63d5a775a35c8.tar drakx-3eba5ff412ca1b693dfa4cef5cf63d5a775a35c8.tar.gz drakx-3eba5ff412ca1b693dfa4cef5cf63d5a775a35c8.tar.bz2 drakx-3eba5ff412ca1b693dfa4cef5cf63d5a775a35c8.tar.xz drakx-3eba5ff412ca1b693dfa4cef5cf63d5a775a35c8.zip |
-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 |