diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-07-28 03:48:47 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-07-28 03:48:47 +0000 |
commit | af0e7294864d848be588f3dc46807a4c66dbdb19 (patch) | |
tree | 282cfbd87d45b0c21592095e242a5c1986780b46 /perl-install | |
parent | 4b55e527e5fc5b5c212b49faab1cf3b641f0e1f6 (diff) | |
download | drakx-af0e7294864d848be588f3dc46807a4c66dbdb19.tar drakx-af0e7294864d848be588f3dc46807a4c66dbdb19.tar.gz drakx-af0e7294864d848be588f3dc46807a4c66dbdb19.tar.bz2 drakx-af0e7294864d848be588f3dc46807a4c66dbdb19.tar.xz drakx-af0e7294864d848be588f3dc46807a4c66dbdb19.zip |
don't set mount point /mnt/windows for removable devices
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 fdfe55111..49dd76a57 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -1120,7 +1120,7 @@ sub getHds { $o->{fstab} = [ fsedit::get_really_all_fstab($all_hds) ]; fs::merge_info_from_mtab($o->{fstab}); - my @win = grep { isFat_or_NTFS($_) && maybeFormatted($_) } @{$o->{fstab}}; + my @win = grep { isFat_or_NTFS($_) && maybeFormatted($_) && !$_->{is_removable} } @{$o->{fstab}}; log::l("win parts: ", join ",", map { $_->{device} } @win) if @win; if (@win == 1) { #- Suggest /boot/efi on ia64. |