From 3693753b57d952dd6148852818cb413012071a37 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Thu, 1 Sep 2005 09:13:35 +0000 Subject: set TMPDIR and TMP during install (bugzilla #18088) --- perl-install/install_steps.pm | 2 ++ 1 file changed, 2 insertions(+) (limited to 'perl-install') diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 435c8836c..3584d8233 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -449,6 +449,8 @@ sub installPackages { #- complete REWORK, TODO and TOCHECK! my $time = time(); { local $ENV{DURING_INSTALL} = 1; + local $ENV{TMPDIR} = '/tmp'; + local $ENV{TMP} = '/tmp'; pkgs::install($o->{isUpgrade}, \@toInstall, $packages, \&installCallback); } any::writeandclean_ldsoconf($o->{prefix}); -- cgit v1.2.1