summaryrefslogtreecommitdiffstats
path: root/perl-install/share/gen_locales.pl
diff options
context:
space:
mode:
authorPablo Saratxaga <pablo@mandriva.com>2004-08-10 07:52:59 +0000
committerPablo Saratxaga <pablo@mandriva.com>2004-08-10 07:52:59 +0000
commit3799c3388d4ed5524da4c9907b28c9797b62d110 (patch)
tree0c7c1ef57fcb1b337c04275004eeae69c89a9691 /perl-install/share/gen_locales.pl
parentc105d33ecddeb86f2fa5516395a5c5521294aa5b (diff)
downloaddrakx-backup-do-not-use-3799c3388d4ed5524da4c9907b28c9797b62d110.tar
drakx-backup-do-not-use-3799c3388d4ed5524da4c9907b28c9797b62d110.tar.gz
drakx-backup-do-not-use-3799c3388d4ed5524da4c9907b28c9797b62d110.tar.bz2
drakx-backup-do-not-use-3799c3388d4ed5524da4c9907b28c9797b62d110.tar.xz
drakx-backup-do-not-use-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.pl2
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 $_";
}
}