diff options
Diffstat (limited to 'perl-install/lang.pm')
-rw-r--r-- | perl-install/lang.pm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/perl-install/lang.pm b/perl-install/lang.pm index 90b37e751..04f2a1fe6 100644 --- a/perl-install/lang.pm +++ b/perl-install/lang.pm @@ -290,10 +290,7 @@ sub load_po($) { $s .= "\%{'$lang'} = ("; my $f; -e ($f = "$_/po/$lang.po") and last foreach @INC; - unless (-e $f) { - -e ($f = "$_") and last foreach @INC; - $f = commands::install_cpio("$f/po", "$lang.po"); - } + local *F; unless ($f && -e $f) { -e ($f = "$_/po/$lang.po.bz2") and last foreach @INC; |