summaryrefslogtreecommitdiffstats
path: root/perl-install/share/gen_locales.pl
diff options
context:
space:
mode:
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 $_";
}
}