From e59770f1f2acf16915f696f1b2c6d2edbd750157 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Thu, 21 Aug 2008 12:46:04 +0000 Subject: (installPackages) do not set $HOME while installing packages (#18088) --- perl-install/install/NEWS | 2 ++ perl-install/install/steps.pm | 1 + 2 files changed, 3 insertions(+) diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index cbab2ed05..6abb700c7 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- do not set $HOME while installing packages (#18088) + Version 11.20 - 20 August 2008 - do not uselessly install kernel-server on x86_64 if more than 3.8Gb diff --git a/perl-install/install/steps.pm b/perl-install/install/steps.pm index 812ff7776..412e027e8 100644 --- a/perl-install/install/steps.pm +++ b/perl-install/install/steps.pm @@ -418,6 +418,7 @@ sub installPackages { #- complete REWORK, TODO and TOCHECK! local $ENV{DURING_INSTALL} = 1; local $ENV{TMPDIR} = '/tmp'; local $ENV{TMP} = '/tmp'; + local $ENV{HOME}; install::pkgs::install($o->{isUpgrade}, \@toInstall, $packages, \&installCallback); } any::writeandclean_ldsoconf($::prefix); -- cgit v1.2.1