diff options
Diffstat (limited to 'perl-install/share/gen_locales.pl')
-rw-r--r-- | perl-install/share/gen_locales.pl | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/perl-install/share/gen_locales.pl b/perl-install/share/gen_locales.pl deleted file mode 100644 index ba0f4784e..000000000 --- a/perl-install/share/gen_locales.pl +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/perl - -use MDK::Common; -use lang; - -foreach (lang::list()) { - my $LANG = lang::lang2LANG($_); - - my $c = lang::during_install__lang2charset($_) or next; - -e "usr/share/locale/$c" or warn("not handled language $_ ($LANG, $c)\n"), next; - if (my $exist = readlink "usr/share/locale/$LANG") { - $exist eq $c or die "symlink $LANG already exist and is $exist instead of $c\n"; - } else { - symlink $c, "usr/share/locale/$LANG" or die "can't create symlink $LANG (for $_)"; - } -} |