Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Sun, 05 Jun 2016 16:48:11
Message-Id: 1465145231.da4e991e2ac745a1d202b964072b69d3bf4bbd01.floppym@gentoo
1 commit: da4e991e2ac745a1d202b964072b69d3bf4bbd01
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 29 12:57:59 2016 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 5 16:47:11 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da4e991e
7
8 distutils-r1.eclass: Do not modify the HOME variable
9
10 This was only necessary when we ran phases in parallel.
11 Also, PMS says this variable should not be modified.
12
13 eclass/distutils-r1.eclass | 6 ------
14 1 file changed, 6 deletions(-)
15
16 diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass
17 index 334ce73..c545290 100644
18 --- a/eclass/distutils-r1.eclass
19 +++ b/eclass/distutils-r1.eclass
20 @@ -637,12 +637,6 @@ distutils-r1_run_phase() {
21 # in the sys.path_importer_cache)
22 mkdir -p "${BUILD_DIR}/lib" || die
23
24 - # We need separate home for each implementation, for .pydistutils.cfg.
25 - if [[ ! ${DISTUTILS_SINGLE_IMPL} ]]; then
26 - local -x HOME=${HOME}/${EPYTHON}
27 - mkdir -p "${HOME}" || die
28 - fi
29 -
30 # Set up build environment, bug #513664.
31 local -x AR=${AR} CC=${CC} CPP=${CPP} CXX=${CXX}
32 tc-export AR CC CPP CXX