diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-08-02 20:42:29 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-08-02 20:42:29 +0000 |
commit | a6b43960c290efc3df6e49b4fe2fcaeace5bd7c9 (patch) | |
tree | f3b82168e2def4ef766536f11bb7daa37ecc48c4 /perl-install/install/steps_auto_install.pm | |
parent | 76582db05edb1925332eb35c944284eb5c87aa21 (diff) | |
download | drakx-a6b43960c290efc3df6e49b4fe2fcaeace5bd7c9.tar drakx-a6b43960c290efc3df6e49b4fe2fcaeace5bd7c9.tar.gz drakx-a6b43960c290efc3df6e49b4fe2fcaeace5bd7c9.tar.bz2 drakx-a6b43960c290efc3df6e49b4fe2fcaeace5bd7c9.tar.xz drakx-a6b43960c290efc3df6e49b4fe2fcaeace5bd7c9.zip |
- restore consoletrans handling and adapt it to kbd
- find a working font for iso-8859-7 (greek)
Diffstat (limited to 'perl-install/install/steps_auto_install.pm')
-rw-r--r-- | perl-install/install/steps_auto_install.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install/steps_auto_install.pm b/perl-install/install/steps_auto_install.pm index debff44e0..f6b556a9d 100644 --- a/perl-install/install/steps_auto_install.pm +++ b/perl-install/install/steps_auto_install.pm @@ -106,9 +106,9 @@ sub charsetChanged { my ($o) = @_; lang::load_console_font($o->{locale}); - my ($name, $_sfm) = lang::l2console_font($o->{locale}); + my ($name, $acm) = lang::l2console_font($o->{locale}, 1); my %fs_options = lang::fs_options($o->{locale}); - $iocharset = $name && $fs_options{iocharset} ne 'utf8' ? $fs_options{iocharset} : ''; + $iocharset = $name && $acm && $fs_options{iocharset} ne 'utf8' ? $fs_options{iocharset} : ''; } sub errorInStep { |