diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-02-21 14:54:28 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-02-21 14:54:28 +0000 |
commit | 6dde5c8b426c01b73c1c63f2a1e74a0af95264e1 (patch) | |
tree | 82a9077dee44316aa6cf0a018ec1f44ec83badef /perl-install/lang.pm | |
parent | b75607f5a2a7f08a1cf710b45ed3c33f37635ae5 (diff) | |
download | drakx-6dde5c8b426c01b73c1c63f2a1e74a0af95264e1.tar drakx-6dde5c8b426c01b73c1c63f2a1e74a0af95264e1.tar.gz drakx-6dde5c8b426c01b73c1c63f2a1e74a0af95264e1.tar.bz2 drakx-6dde5c8b426c01b73c1c63f2a1e74a0af95264e1.tar.xz drakx-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/lang.pm')
-rw-r--r-- | perl-install/lang.pm | 4 |
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'; }; } |