diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-01-31 00:52:25 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-01-31 00:52:25 +0000 |
commit | 71957e7038064e01eeaeff1f28e12a4f237e973c (patch) | |
tree | 62af8787b7577381865871d77a06b8e2961efe44 /perl-install | |
parent | 2dcc6852ee2dd49f88999bb6141df1d56f8bbb3f (diff) | |
download | drakx-71957e7038064e01eeaeff1f28e12a4f237e973c.tar drakx-71957e7038064e01eeaeff1f28e12a4f237e973c.tar.gz drakx-71957e7038064e01eeaeff1f28e12a4f237e973c.tar.bz2 drakx-71957e7038064e01eeaeff1f28e12a4f237e973c.tar.xz drakx-71957e7038064e01eeaeff1f28e12a4f237e973c.zip |
fix typo
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index 96ee9411d..f35dc8a06 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -1005,7 +1005,7 @@ sub getHds { $o->{fstab} = [ fsedit::get_all_fstab($all_hds) ]; fs::merge_info_from_mtab($o->{fstab}); - my @win = grep { isFat_or_NTFS($_) && isFAT_or_NTFS({ type => fsedit::typeOfPart($_->{device}) }) } @{$o->{fstab}}; + my @win = grep { isFat_or_NTFS($_) && isFat_or_NTFS({ type => fsedit::typeOfPart($_->{device}) }) } @{$o->{fstab}}; log::l("win parts: ", join ",", map { $_->{device} } @win) if @win; if (@win == 1) { #- Suggest /boot/efi on ia64. |