From 4f939b68055c7c3e3b9ee50bbd79f6d0c415f235 Mon Sep 17 00:00:00 2001 From: Martin Whitaker Date: Wed, 4 Jan 2017 11:43:26 +0000 Subject: Fix bug in detecting whether a BIOS boot partition is required (mga#19935). --- perl-install/fs/partitioning_wizard.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 = ''; } -- cgit v1.2.1