diff options
-rw-r--r-- | perl-install/fs.pm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm index e047c1611..03397d80f 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -362,6 +362,12 @@ sub set_default_options { $options->{user} = 0; } + if ($options->{supermount}) { + #- drives supermount crazy :'-( + delete $options->{'codepage='}; + delete $options->{'iocharset='}; + } + # have noauto when we have user $options->{noauto} = 1 if $options->{user}; |