diff options
author | pad <pad@mandriva.com> | 1999-09-06 20:33:18 +0000 |
---|---|---|
committer | pad <pad@mandriva.com> | 1999-09-06 20:33:18 +0000 |
commit | 115b4b1145f86d90f20c0404a54fa907f06c30b0 (patch) | |
tree | 046cd13affb85df1028bcc687e1c8853fc576cd7 /perl-install/install_steps.pm | |
parent | a6096f902a2df839b7e89c084d629840bf52a3a1 (diff) | |
download | drakx-115b4b1145f86d90f20c0404a54fa907f06c30b0.tar drakx-115b4b1145f86d90f20c0404a54fa907f06c30b0.tar.gz drakx-115b4b1145f86d90f20c0404a54fa907f06c30b0.tar.bz2 drakx-115b4b1145f86d90f20c0404a54fa907f06c30b0.tar.xz drakx-115b4b1145f86d90f20c0404a54fa907f06c30b0.zip |
bugfix
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 6e8bff2e9..6cd107081 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -81,8 +81,12 @@ sub errorInStep($$) {} #------------------------------------------------------------------------------ sub selectLanguage { my ($o) = @_; - $o->{keyboard} ||= keyboard::lang2keyboard($o->{lang}); - selectKeyboard($o); + lang::set($o->{lang}); + + unless ($o->{keyboard_force}) { + $o->{keyboard} = keyboard::lang2keyboard($o->{lang}); + selectKeyboard($o); + } } #------------------------------------------------------------------------------ sub selectKeyboard { |