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 +++ perl-install/install/NEWS | 2 ++ 2 files changed, 5 insertions(+) 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->{$_}; diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 4cd7d0aa6..b22b6c190 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- do not create alt_windows unless needed + (regression introduced on 2007-11-26) (#37722) - install linuxwacom if needed - load disk/ide before disk/scsi, or else sata_sis may be loaded for a SATA controller and trigger pata_sis loading before sis5513 is loaded, -- cgit v1.2.1