diff options
author | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2017-01-04 11:43:26 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@gmail.com> | 2017-01-17 23:14:50 +0000 |
commit | 4f939b68055c7c3e3b9ee50bbd79f6d0c415f235 (patch) | |
tree | 061265ccaabefb5b604409aa5896a8b2622de181 | |
parent | 90993d7430af43744c3e1600e0d58ecc93ed4d67 (diff) | |
download | drakx-4f939b68055c7c3e3b9ee50bbd79f6d0c415f235.tar drakx-4f939b68055c7c3e3b9ee50bbd79f6d0c415f235.tar.gz drakx-4f939b68055c7c3e3b9ee50bbd79f6d0c415f235.tar.bz2 drakx-4f939b68055c7c3e3b9ee50bbd79f6d0c415f235.tar.xz drakx-4f939b68055c7c3e3b9ee50bbd79f6d0c415f235.zip |
Fix bug in detecting whether a BIOS boot partition is required (mga#19935).
-rw-r--r-- | perl-install/fs/partitioning_wizard.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/partitioning_wizard.pm b/perl-install/fs/partitioning_wizard.pm index c17e3da52..6158dd440 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 BIOS boot partition for non-UEFI GPT-partitioned disks. Please create one before continuing.")); $ok = ''; } |