diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2004-02-19 11:35:12 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2004-02-19 11:35:12 +0000 |
commit | b368d96a54e8d1e4f8f37a5893385fe23bdafe13 (patch) | |
tree | ed1328e93ef4c1556b47780f7ddccd4a551eb681 /perl-install | |
parent | 63c6c14d5c3774cc7813bc49f966e54e4410ab20 (diff) | |
download | drakx-b368d96a54e8d1e4f8f37a5893385fe23bdafe13.tar drakx-b368d96a54e8d1e4f8f37a5893385fe23bdafe13.tar.gz drakx-b368d96a54e8d1e4f8f37a5893385fe23bdafe13.tar.bz2 drakx-b368d96a54e8d1e4f8f37a5893385fe23bdafe13.tar.xz drakx-b368d96a54e8d1e4f8f37a5893385fe23bdafe13.zip |
add utf8 key to locale config if not already present, so that
auto install behave as before (pixel)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_steps.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index c7b7961cf..298c9c0e6 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -108,6 +108,7 @@ sub selectLanguage { } lang::set($o->{locale}, !$o->isa('interactive::gtk')); + add2hash_($o->{locale}, { utf8 => lang::utf8_should_be_needed($o->{locale}) }); log::l("selectLanguage: pack_langs: ", lang::pack_langs($o->{locale}{langs}), " utf8-flag: ", to_bool($o->{locale}{utf8})); |