diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-09-24 12:11:09 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-09-24 12:11:09 +0000 |
commit | 1fbad3fcf6b6149d30218c34b3aa2a1650585574 (patch) | |
tree | 887c9adb056abcfb724ad2de51e5e977dbf0634b /perl-install | |
parent | 279fb0bd6c5d1ef735230dc7cfa26b60632a183c (diff) | |
download | drakx-1fbad3fcf6b6149d30218c34b3aa2a1650585574.tar drakx-1fbad3fcf6b6149d30218c34b3aa2a1650585574.tar.gz drakx-1fbad3fcf6b6149d30218c34b3aa2a1650585574.tar.bz2 drakx-1fbad3fcf6b6149d30218c34b3aa2a1650585574.tar.xz drakx-1fbad3fcf6b6149d30218c34b3aa2a1650585574.zip |
add "iocharset=" for cdrom
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/fs.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm index 8fb7d4896..7e68dd80e 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -360,7 +360,7 @@ sub set_default_options { put_in_hash($options, { 'iocharset=' => $iocharset }); } if (isThisFs('iso9660', $part) || $is_auto) { - put_in_hash($options, { user => 1, noexec => 0, }); + put_in_hash($options, { user => 1, noexec => 0, 'iocharset=' => $iocharset }); } if (isThisFs('reiserfs', $part)) { $options->{notail} = 1; |