diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-02-18 09:21:18 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-02-18 09:21:18 +0000 |
commit | e8d6f43f2aef5c0f5d4dc7951a50eb39527822b8 (patch) | |
tree | 87b7d9ea67fa7b003fce8f0ab9c1166b726b07af /perl-install/bootloader.pm | |
parent | abcb9fce7cc185fd3bc49c779a461f81432df0a2 (diff) | |
download | drakx-e8d6f43f2aef5c0f5d4dc7951a50eb39527822b8.tar drakx-e8d6f43f2aef5c0f5d4dc7951a50eb39527822b8.tar.gz drakx-e8d6f43f2aef5c0f5d4dc7951a50eb39527822b8.tar.bz2 drakx-e8d6f43f2aef5c0f5d4dc7951a50eb39527822b8.tar.xz drakx-e8d6f43f2aef5c0f5d4dc7951a50eb39527822b8.zip |
- do not create alt_windows unless needed
(regression introduced on 2007-11-26) (#37722)
Diffstat (limited to 'perl-install/bootloader.pm')
-rw-r--r-- | perl-install/bootloader.pm | 3 |
1 files changed, 3 insertions, 0 deletions
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->{$_}; |