summaryrefslogtreecommitdiffstats
path: root/perl-install/share/gen_locales.pl
diff options
context:
space:
mode:
authorMystery Man <unknown@mandriva.org>2004-06-15 16:50:22 +0000
committerMystery Man <unknown@mandriva.org>2004-06-15 16:50:22 +0000
commit8ea9beca90c410e12593fedfb6e741dbdf8795d0 (patch)
tree544a377d0ea57462110009fbbbfd14473390e2a1 /perl-install/share/gen_locales.pl
parentb5dc638815c772056e07cd013f5b1674900456d5 (diff)
downloaddrakx-8ea9beca90c410e12593fedfb6e741dbdf8795d0.tar
drakx-8ea9beca90c410e12593fedfb6e741dbdf8795d0.tar.gz
drakx-8ea9beca90c410e12593fedfb6e741dbdf8795d0.tar.bz2
drakx-8ea9beca90c410e12593fedfb6e741dbdf8795d0.tar.xz
drakx-8ea9beca90c410e12593fedfb6e741dbdf8795d0.zip
This commit was manufactured by cvs2svn to create branch 'mandrakesoft'.topic/mandrakesoft
Diffstat (limited to 'perl-install/share/gen_locales.pl')
-rw-r--r--perl-install/share/gen_locales.pl14
1 files changed, 0 insertions, 14 deletions
diff --git a/perl-install/share/gen_locales.pl b/perl-install/share/gen_locales.pl
deleted file mode 100644
index 93820bca7..000000000
--- a/perl-install/share/gen_locales.pl
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/perl
-
-use MDK::Common;
-use lang;
-
-foreach (lang::list_langs()) {
- my $c = lang::during_install__l2charset($_) or next;
- -e "usr/share/locale/$c" or warn("not handled lang $_ (charset $c)\n"), next;
- if (my $exist = readlink "usr/share/locale/$_") {
- $exist eq $c or die "symlink $_ already exist and is $exist instead of $c\n";
- } else {
- symlink $c, "usr/share/locale/$_" or die "can't create symlink $_";
- }
-}