diff options
-rw-r--r-- | perl-install/bootloader.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index 6d9b1047f..e6428ae92 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -823,6 +823,7 @@ sub install_silo { sub make_label_lilo_compatible { my ($label) = @_; $label = substr($label, 0, 15); #- lilo doesn't handle more than 15 char long labels + $label =~ s/ /_/g; #- lilo does not support blank character in image names, labels or aliases qq("$label"); } |