https://bugzilla.novell.com/show_bug.cgi?id=223909 mvidner@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mvidner@novell.com Summary|Bootloader GRUB.pm line 1382|Bootloader GRUB.pm line 1382, and 1592 ------- Comment #14 from mvidner@novell.com 2007-06-15 05:17 MST ------- Comment 12: I had been seeing the GRUB.pm:1592 warning for some time so I decided to debug it: During the installation, before we reach the Installation Summary, I added some logging[*] and found that the line my ($type) = split(/:/, $go->{$key} || ""); has a bug: for the key "color", you do split(/:/,'') and so $type is the first element of an empty list, therefore undefined. A little confusing is the fact that perl warns about the "if" line, not the later "elsif". A quick fix to get "" for $type is: my ($type) = split(/:/, $go->{$key} || ":"); [*]: a trick to edit a file inside a read-only fs: cp /usr/lib/perl5/vendor_perl/5.8.8/Bootloader/Core/GRUB.pm /root mount --bind /root/GRUB.pm /usr/lib/perl5/vendor_perl/5.8.8/Bootloader/Core/GRUB.pm vi /root/GRUB.pm -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.