summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/bootloader.pm4
1 files changed, 1 insertions, 3 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm
index a8265f61d..866c71443 100644
--- a/perl-install/bootloader.pm
+++ b/perl-install/bootloader.pm
@@ -355,9 +355,7 @@ sub same_entries {
my ($a, $b) = @_;
foreach (uniq(keys %$a, keys %$b)) {
- if ($_ eq 'label') {
- next;
- } elsif ($_ eq 'append') {
+ if (member($_, 'label', 'append', 'mapdrive') {
next;
} else {
next if $a->{$_} eq $b->{$_};