summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-02-21 14:54:28 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-02-21 14:54:28 +0000
commit6dde5c8b426c01b73c1c63f2a1e74a0af95264e1 (patch)
tree82a9077dee44316aa6cf0a018ec1f44ec83badef /perl-install
parentb75607f5a2a7f08a1cf710b45ed3c33f37635ae5 (diff)
downloaddrakx-backup-do-not-use-6dde5c8b426c01b73c1c63f2a1e74a0af95264e1.tar
drakx-backup-do-not-use-6dde5c8b426c01b73c1c63f2a1e74a0af95264e1.tar.gz
drakx-backup-do-not-use-6dde5c8b426c01b73c1c63f2a1e74a0af95264e1.tar.bz2
drakx-backup-do-not-use-6dde5c8b426c01b73c1c63f2a1e74a0af95264e1.tar.xz
drakx-backup-do-not-use-6dde5c8b426c01b73c1c63f2a1e74a0af95264e1.zip
LC_COLLATE and LC_CTYPE are getFile'd (cuz they are big, causing the .cz2 to be *big*)
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/lang.pm4
1 files changed, 4 insertions, 0 deletions
diff --git a/perl-install/lang.pm b/perl-install/lang.pm
index f24db210f..6d773801a 100644
--- a/perl-install/lang.pm
+++ b/perl-install/lang.pm
@@ -560,6 +560,10 @@ sub set {
require packdrake;
my $packer = new packdrake("$ENV{SHARE_PATH}/locale.cz2", quiet => 1);
$packer->extract_archive("$ENV{SHARE_PATH}/locale", lang2LANG($lang));
+
+ #- LC_COLLATE and LC_CTYPE are getFile'd (cuz they are big, causing the .cz2 to be *big*)
+ my ($dir) = glob_("$ENV{SHARE_PATH}/locale/*");
+ install_any::getAndSaveFile("$dir/$_") foreach 'LC_COLLATE', 'LC_CTYPE';
};
}