diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-08-02 16:38:07 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-08-02 16:38:07 +0000 |
commit | 85be1cc2d05ba4d2c3483023426e4878abd52807 (patch) | |
tree | 08b97af22f7a5381e2abadc67277edb452225229 /perl-install/install/steps_auto_install.pm | |
parent | fa697b3a82b94ac517134ec5b707c8591b468708 (diff) | |
download | drakx-85be1cc2d05ba4d2c3483023426e4878abd52807.tar drakx-85be1cc2d05ba4d2c3483023426e4878abd52807.tar.gz drakx-85be1cc2d05ba4d2c3483023426e4878abd52807.tar.bz2 drakx-85be1cc2d05ba4d2c3483023426e4878abd52807.tar.xz drakx-85be1cc2d05ba4d2c3483023426e4878abd52807.zip |
use kbd (setfont) instead of console-tools (consolechars)
quickly adapting fonts to match existing kbd fonts,
so dropping some for which i can't find a working equivalent
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 3b5e24636..debff44e0 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, $acm) = lang::l2console_font($o->{locale}, 1); + my ($name, $_sfm) = lang::l2console_font($o->{locale}); my %fs_options = lang::fs_options($o->{locale}); - $iocharset = $name && $acm && $fs_options{iocharset} ne 'utf8' ? $fs_options{iocharset} : ''; + $iocharset = $name && $fs_options{iocharset} ne 'utf8' ? $fs_options{iocharset} : ''; } sub errorInStep { |