diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-07-20 14:22:10 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-07-20 14:22:10 +0000 |
commit | 0689e707a304e57e8b2e233567a08535f59edaf5 (patch) | |
tree | f47a0966a7bc54f47a35b31f00fa910641c93a9b | |
parent | ea530fe0c4c94aa46430b4fbea0fc41967ff7fb2 (diff) | |
download | drakx-0689e707a304e57e8b2e233567a08535f59edaf5.tar drakx-0689e707a304e57e8b2e233567a08535f59edaf5.tar.gz drakx-0689e707a304e57e8b2e233567a08535f59edaf5.tar.bz2 drakx-0689e707a304e57e8b2e233567a08535f59edaf5.tar.xz drakx-0689e707a304e57e8b2e233567a08535f59edaf5.zip |
fix
-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 a28684f5b..73db24299 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -614,7 +614,7 @@ sub install_lilo ($$) { if (arch() =~ /ia64/) { (my $part, $file) = fsedit::file2part($prefix, $fstab, $file); my %hds = map_index { $_ => "hd$::i" } map { $_->{device} } - sort { isFat($b) <=> isFat($a) || $a->{device} cmp $b->{device} } get_fstab(@$hds); + sort { isFat($b) <=> isFat($a) || $a->{device} cmp $b->{device} } fsedit::get_fstab(@$hds); %hds->{$part->{device}} . ":" . $file; } else { $file |