diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-09-03 16:04:49 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-09-03 16:04:49 +0000 |
commit | 0b690781203ed2113d85e5a53c4d260847c25387 (patch) | |
tree | 73eefce0c3865730d9bd5f31d52928ce5dadf25e /perl-install/install_steps.pm | |
parent | 2602c854c769e2b70bdf18579f6348b0496bc09f (diff) | |
download | drakx-0b690781203ed2113d85e5a53c4d260847c25387.tar drakx-0b690781203ed2113d85e5a53c4d260847c25387.tar.gz drakx-0b690781203ed2113d85e5a53c4d260847c25387.tar.bz2 drakx-0b690781203ed2113d85e5a53c4d260847c25387.tar.xz drakx-0b690781203ed2113d85e5a53c4d260847c25387.zip |
- move call to ->charsetChanged from install_steps_interactive to install_steps
so that we can use it in install_steps_auto_install_non_interactive
- don't overload ->selectLanguage to call lang::load_console_font(), overload ->charsetChanged instead
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index a4ab012fa..62e1f699c 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -114,6 +114,8 @@ sub selectLanguage { keyboard::setup($o->{keyboard}) if !$::live; } + $o->charsetChanged; + addToBeDone { lang::write_langs($o->{prefix}, $o->{locale}{langs}); } 'formatPartitions' unless $::g_auto_install; |