summaryrefslogtreecommitdiffstats
path: root/perl-install/share/gen_locales.pl
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-08-17 09:51:00 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-08-17 09:51:00 +0000
commit2138caee5d80a58604bf6af0dacc121115b4eb62 (patch)
tree0b130e2a42d4ab2806e1b59e6ec1be09ad396476 /perl-install/share/gen_locales.pl
parentfac2ae48d93c5bf4f93025ecb71eb21a62b540d1 (diff)
downloaddrakx-backup-do-not-use-2138caee5d80a58604bf6af0dacc121115b4eb62.tar
drakx-backup-do-not-use-2138caee5d80a58604bf6af0dacc121115b4eb62.tar.gz
drakx-backup-do-not-use-2138caee5d80a58604bf6af0dacc121115b4eb62.tar.bz2
drakx-backup-do-not-use-2138caee5d80a58604bf6af0dacc121115b4eb62.tar.xz
drakx-backup-do-not-use-2138caee5d80a58604bf6af0dacc121115b4eb62.zip
- don't generate locales.tar.bz2, do the same directly (since it's now quite simple)
- when using ramdisk, we now have all the locales, no need to handle it specially
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 $_";
- }
-}