https://bugzilla.novell.com/show_bug.cgi?id=766456 https://bugzilla.novell.com/show_bug.cgi?id=766456#c16 --- Comment #16 from Michael Chang <mchang@suse.com> 2012-08-08 07:25:22 UTC --- Finally the problem is on perl bootloader, it doesn't append new line to last line when assembling the config. Index: perl-Bootloader-0.6.7/src/Library.pm =================================================================== --- perl-Bootloader-0.6.7.orig/src/Library.pm +++ perl-Bootloader-0.6.7/src/Library.pm @@ -574,6 +574,7 @@ sub GetFilesContents { while ((my $fn, my $lines_ref) = each (%{$new_lines_ref})) { $files{$fn} = join "\n", @{$lines_ref}; + $files{$fn} .= "\n"; } return \%files; } Verified the issue fixed by the patch. -- 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.