From e8d6f43f2aef5c0f5d4dc7951a50eb39527822b8 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Mon, 18 Feb 2008 09:21:18 +0000 Subject: - do not create alt_windows unless needed (regression introduced on 2007-11-26) (#37722) --- perl-install/bootloader.pm | 3 +++ 1 file changed, 3 insertions(+) (limited to 'perl-install/bootloader.pm') diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index 0a0cca5bc..abaee89e1 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -474,6 +474,9 @@ sub same_entries { foreach (uniq(keys %$a, keys %$b)) { if (member($_, 'label', 'append', 'mapdrive', 'readonly', 'makeactive', 'verbatim')) { next; + } elsif ($_ eq 'grub_root' && (!$a->{$_} || !$b->{$_})) { + #- grub_root is mostly internal stuff. if it misses, it's ok + next; } else { next if $a->{$_} eq $b->{$_}; -- cgit v1.2.1