summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
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';
};
}