diff options
author | Francois Pons <fpons@mandriva.com> | 2001-03-12 15:18:34 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2001-03-12 15:18:34 +0000 |
commit | 18a5572ee8e3850f1d1f928d43d2e1799594dbd9 (patch) | |
tree | a8d7ff802b09c27d3cf3d169167fb4371836cba9 /perl-install/lang.pm | |
parent | ece757a4920eb93a5eef727f710094c65b767118 (diff) | |
download | drakx-18a5572ee8e3850f1d1f928d43d2e1799594dbd9.tar drakx-18a5572ee8e3850f1d1f928d43d2e1799594dbd9.tar.gz drakx-18a5572ee8e3850f1d1f928d43d2e1799594dbd9.tar.bz2 drakx-18a5572ee8e3850f1d1f928d43d2e1799594dbd9.tar.xz drakx-18a5572ee8e3850f1d1f928d43d2e1799594dbd9.zip |
fixed live update between GLIBC 2.1 and GLIBC 2.2. should work for other
combination but not tested. fixed locale usage and gtk environment
interaction (added LOCPATH, GCONV_PATH and GTK_EXE_PREFIX).
created LD_LOADER environment variable to keep track of right ELF loader
to be used for the GLIBC used by the live update. added internal PATH
to LD_LIBRARY_PATH as ELF loader only check this one and not PATH.
Diffstat (limited to 'perl-install/lang.pm')
-rw-r--r-- | perl-install/lang.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/lang.pm b/perl-install/lang.pm index e6cd1220b..76dea427c 100644 --- a/perl-install/lang.pm +++ b/perl-install/lang.pm @@ -388,7 +388,7 @@ sub load_po { unless ($f && -e $f) { -e ($f = "$_/po/$lang.po.bz2") and last foreach @INC; if (-e $f) { - open F, "bzip2 -dc $f 2>/dev/null |"; + open F, "$ENV{LD_LOADER} bzip2 -dc $f 2>/dev/null |"; } else { -e ($f = "$_/po.cz2") and last foreach @INC; log::l("trying to load $lang.po from $f"); |