summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMike Gilbert <floppym@gentoo.org>2016-05-06 09:25:50 -0400
committerMichał Górny <mgorny@gentoo.org>2016-05-21 21:39:53 +0200
commit3bcfb71425f15e237d6002ff3626e2e169df3f05 (patch)
tree24dbcffe450dad004d0b46ffa2cc885c4c7b5579 /eclass
parentc386256b252aab2e880e89deeed01b078c640662 (diff)
downloadgentoo-3bcfb71425f15e237d6002ff3626e2e169df3f05.tar.gz
gentoo-3bcfb71425f15e237d6002ff3626e2e169df3f05.tar.xz
distutils-r1.eclass: Do not modify the HOME variable
This was only necessary when we ran phases in parallel. Also, PMS says this variable should not be modified.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/distutils-r1.eclass6
1 files changed, 0 insertions, 6 deletions
diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass
index afd29ed272f..dbc55ff45eb 100644
--- a/eclass/distutils-r1.eclass
+++ b/eclass/distutils-r1.eclass
@@ -632,12 +632,6 @@ distutils-r1_run_phase() {
# in the sys.path_importer_cache)
mkdir -p "${BUILD_DIR}/lib" || die
- # We need separate home for each implementation, for .pydistutils.cfg.
- if [[ ! ${DISTUTILS_SINGLE_IMPL} ]]; then
- local -x HOME=${HOME}/${EPYTHON}
- mkdir -p "${HOME}" || die
- fi
-
# Set up build environment, bug #513664.
local -x AR=${AR} CC=${CC} CPP=${CPP} CXX=${CXX}
tc-export AR CC CPP CXX