diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-11-08 15:42:24 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-11-08 15:42:24 +0000 |
commit | 4d5530fe42b7ef35e362af65c1ff03102d4ceb27 (patch) | |
tree | 133b761d46222f06a50567343d0194b0b509933e /perl-install/lang.pm | |
parent | ec1b0271eb0b20ef165bf81309195c842ceb225f (diff) | |
download | drakx-4d5530fe42b7ef35e362af65c1ff03102d4ceb27.tar drakx-4d5530fe42b7ef35e362af65c1ff03102d4ceb27.tar.gz drakx-4d5530fe42b7ef35e362af65c1ff03102d4ceb27.tar.bz2 drakx-4d5530fe42b7ef35e362af65c1ff03102d4ceb27.tar.xz drakx-4d5530fe42b7ef35e362af65c1ff03102d4ceb27.zip |
fix regression(?) introduced in "r207416 2004-05-12" when cleaning standard_locale()
Diffstat (limited to 'perl-install/lang.pm')
-rw-r--r-- | perl-install/lang.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/lang.pm b/perl-install/lang.pm index 555d811a8..9b4efa365 100644 --- a/perl-install/lang.pm +++ b/perl-install/lang.pm @@ -465,8 +465,9 @@ sub standard_locale { my $main_locale = locale_to_main_locale($lang); if ($main_locale ne $lang) { standard_locale($main_locale, $country, $prefer_lang); + } else { + ''; } - ''; } sub fix_variant { |