diff options
author | Pablo Saratxaga <pablo@mandriva.com> | 2004-08-10 07:52:59 +0000 |
---|---|---|
committer | Pablo Saratxaga <pablo@mandriva.com> | 2004-08-10 07:52:59 +0000 |
commit | 3799c3388d4ed5524da4c9907b28c9797b62d110 (patch) | |
tree | 0c7c1ef57fcb1b337c04275004eeae69c89a9691 /perl-install/share/gen_locales.pl | |
parent | c105d33ecddeb86f2fa5516395a5c5521294aa5b (diff) | |
download | drakx-3799c3388d4ed5524da4c9907b28c9797b62d110.tar drakx-3799c3388d4ed5524da4c9907b28c9797b62d110.tar.gz drakx-3799c3388d4ed5524da4c9907b28c9797b62d110.tar.bz2 drakx-3799c3388d4ed5524da4c9907b28c9797b62d110.tar.xz drakx-3799c3388d4ed5524da4c9907b28c9797b62d110.zip |
using "en_US.UTF-8" instead of "UTF-8" as model
Diffstat (limited to 'perl-install/share/gen_locales.pl')
-rw-r--r-- | perl-install/share/gen_locales.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/share/gen_locales.pl b/perl-install/share/gen_locales.pl index 4928ff8c8..fcc03f0c9 100644 --- a/perl-install/share/gen_locales.pl +++ b/perl-install/share/gen_locales.pl @@ -7,6 +7,6 @@ foreach (lang::list_langs()) { if (my $exist = readlink "usr/share/locale/$_") { die "symlink $_ already exist and is $exist\n"; } else { - symlink "UTF-8", "usr/share/locale/$_" or die "can't create symlink $_"; + symlink "en_US.UTF-8", "usr/share/locale/$_" or die "can't create symlink $_"; } } |