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.pl12
1 files changed, 0 insertions, 12 deletions
diff --git a/perl-install/share/gen_locales.pl b/perl-install/share/gen_locales.pl
deleted file mode 100644
index fcc03f0c9..000000000
--- a/perl-install/share/gen_locales.pl
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/bin/perl
-
-use MDK::Common;
-use lang;
-
-foreach (lang::list_langs()) {
- if (my $exist = readlink "usr/share/locale/$_") {
- die "symlink $_ already exist and is $exist\n";
- } else {
- symlink "en_US.UTF-8", "usr/share/locale/$_" or die "can't create symlink $_";
- }
-}