diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-03-21 07:53:25 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-03-21 07:53:25 +0000 |
commit | cd999d1a5d5b8767f3f268f0a11e85cc45a52632 (patch) | |
tree | e983d494a0df861d9cb641d4c370b6208f4a2f55 /perl-install | |
parent | aa48340dd473f2628742e3a23393ead0cf8c10eb (diff) | |
download | drakx-cd999d1a5d5b8767f3f268f0a11e85cc45a52632.tar drakx-cd999d1a5d5b8767f3f268f0a11e85cc45a52632.tar.gz drakx-cd999d1a5d5b8767f3f268f0a11e85cc45a52632.tar.bz2 drakx-cd999d1a5d5b8767f3f268f0a11e85cc45a52632.tar.xz drakx-cd999d1a5d5b8767f3f268f0a11e85cc45a52632.zip |
ensure $locale->{country} and $locale->{IM} are set correctly even if
$locale->{country} was already set (because of lang=xxx on /proc/cmdline,
$locale->{country} is already set and install::steps::selectLanguage won't do
it, and that's normal)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/any.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index ffd2841c2..3f067b971 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -998,6 +998,7 @@ when your installation is complete and you restart your system.")), #- convert to the default locale for asked language $locale->{lang} = $listval2val->($lang); + lang::lang_changed($locale); } sub selectLanguage_standalone { |