summaryrefslogtreecommitdiffstats
path: root/perl-install/install/steps_auto_install.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2007-08-02 20:42:29 +0000
committerPascal Rigaux <pixel@mandriva.com>2007-08-02 20:42:29 +0000
commita6b43960c290efc3df6e49b4fe2fcaeace5bd7c9 (patch)
treef3b82168e2def4ef766536f11bb7daa37ecc48c4 /perl-install/install/steps_auto_install.pm
parent76582db05edb1925332eb35c944284eb5c87aa21 (diff)
downloaddrakx-backup-do-not-use-a6b43960c290efc3df6e49b4fe2fcaeace5bd7c9.tar
drakx-backup-do-not-use-a6b43960c290efc3df6e49b4fe2fcaeace5bd7c9.tar.gz
drakx-backup-do-not-use-a6b43960c290efc3df6e49b4fe2fcaeace5bd7c9.tar.bz2
drakx-backup-do-not-use-a6b43960c290efc3df6e49b4fe2fcaeace5bd7c9.tar.xz
drakx-backup-do-not-use-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.pm4
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 {