diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/install/steps.pm | 1 |
2 files changed, 3 insertions, 0 deletions
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); |