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 5e5d9741b..ce5c521a1 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -720,7 +720,7 @@ sub write_lilo_conf { $done{0} = $done{$dev2bios{$dev}} = 1; } foreach (0 .. 3) { - my ($letter) = $bios2dev{$_} !~ /hd([^ac])/; #- at least hda and hdc are handled correctly :-/ + my ($letter) = $bios2dev{$_} =~ /hd([^ac])/; #- at least hda and hdc are handled correctly :-/ next if $done{$_} || !$letter; next if $_ > 0 #- always print if first disk is hdb, hdd, hde... |