diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-02-18 16:26:41 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-02-18 16:26:41 +0000 |
commit | 573eb79efb7da9a5b4cf15eb89ec6569d85a7db1 (patch) | |
tree | 3c0398d50f5fc2fa104f82b842c21fbda25cbb91 /perl-install/install2.pm | |
parent | b419083ebecca691bdd92cc9c035e96affd62a72 (diff) | |
download | drakx-backup-do-not-use-573eb79efb7da9a5b4cf15eb89ec6569d85a7db1.tar drakx-backup-do-not-use-573eb79efb7da9a5b4cf15eb89ec6569d85a7db1.tar.gz drakx-backup-do-not-use-573eb79efb7da9a5b4cf15eb89ec6569d85a7db1.tar.bz2 drakx-backup-do-not-use-573eb79efb7da9a5b4cf15eb89ec6569d85a7db1.tar.xz drakx-backup-do-not-use-573eb79efb7da9a5b4cf15eb89ec6569d85a7db1.zip |
HACK: set LD_ASSUME_KERNEL so that rpm doesn't try to use tls (which we don't
have at install) otherwise it causes *weird* problems in __db*. When
LD_ASSUME_KERNEL is set, no __db* are used, and so no such pbs.
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r-- | perl-install/install2.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index 2acfe1b0d..900aab616 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -340,6 +340,7 @@ sub main { install_steps_auto_install_non_interactive::errorInStep(); }; $ENV{PERL_BADLANG} = 1; + $ENV{LD_ASSUME_KERNEL} = '2.4.1'; umask 022; $::isInstall = 1; |