diff options
Diffstat (limited to 'perl-install/bootloader.pm')
-rw-r--r-- | perl-install/bootloader.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index 5f475a0b8..df2020bb6 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -83,7 +83,7 @@ sub read() { my %b; foreach (cat_("$::prefix$file")) { next if /^\s*#/ || /^\s*$/; - ($_, $v) = /^\s*(\S+)\s*(?:=\s*(.*?))?\s*$/ or log::l("unknown line in lilo.conf: $_"), next; + ($_, $v) = /^\s*([^=\s]+)\s*(?:=\s*(.*?))?\s*$/ or log::l("unknown line in lilo.conf: $_"), next; if (/^(image|other)$/) { if (arch() =~ /ppc/) { |