diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-02-03 19:24:00 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-02-03 19:24:00 +0000 |
commit | a341b16a6f1835fb8774fbc8a1d08440cfa93082 (patch) | |
tree | a8beb1a7f9b5727d43b5a7f5531cf26c82bfc51e /perl-install | |
parent | 03bb21af0e9c25e7bb5d8719f1231d265663a364 (diff) | |
download | drakx-backup-do-not-use-a341b16a6f1835fb8774fbc8a1d08440cfa93082.tar drakx-backup-do-not-use-a341b16a6f1835fb8774fbc8a1d08440cfa93082.tar.gz drakx-backup-do-not-use-a341b16a6f1835fb8774fbc8a1d08440cfa93082.tar.bz2 drakx-backup-do-not-use-a341b16a6f1835fb8774fbc8a1d08440cfa93082.tar.xz drakx-backup-do-not-use-a341b16a6f1835fb8774fbc8a1d08440cfa93082.zip |
fix typo
Diffstat (limited to 'perl-install')
-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... |