diff --git a/ChangeLog b/ChangeLog index bac248c75..163265bd0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-09-21 Vladimir Serbinenko + + * grub-core/gmodule.pl.in: Accept newer binutils which output + empty column rather than 0x0. + 2014-09-21 Michael Chang * grub-core/osdep/unix/config.c: Remove extraneous comma. diff --git a/grub-core/gmodule.pl.in b/grub-core/gmodule.pl.in index 6739a6f1c..78aa1e64e 100644 --- a/grub-core/gmodule.pl.in +++ b/grub-core/gmodule.pl.in @@ -23,7 +23,7 @@ while (<>) { } print " -s $2 $sections{$1}" - if ($sections{$1} ne '0x0'); + if ($sections{$1} ne '0x0' and $sections{$1} ne ''); }; close (READELF); print "\n";