diff options
author | Patrick Lauer <patrick@gentoo.org> | 2012-03-15 16:51:54 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2012-03-15 16:51:54 +0000 |
commit | b9512d6c2c67c83b06f22dd6974c90423231cc92 (patch) | |
tree | c79ca63db1b09aaf3cb5114839019eb08227115e /eclass/distutils.eclass | |
parent | Fixed ${S} (bug #408365) (diff) | |
download | gentoo-2-b9512d6c2c67c83b06f22dd6974c90423231cc92.tar.gz gentoo-2-b9512d6c2c67c83b06f22dd6974c90423231cc92.tar.bz2 gentoo-2-b9512d6c2c67c83b06f22dd6974c90423231cc92.zip |
Fixing #407495
Diffstat (limited to 'eclass/distutils.eclass')
-rw-r--r-- | eclass/distutils.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/distutils.eclass b/eclass/distutils.eclass index 2b4e1c21ff62..804d7092ee10 100644 --- a/eclass/distutils.eclass +++ b/eclass/distutils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/distutils.eclass,v 1.81 2012/01/01 05:02:27 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/distutils.eclass,v 1.82 2012/03/15 16:51:54 patrick Exp $ # @ECLASS: distutils.eclass # @MAINTAINER: @@ -444,9 +444,9 @@ distutils_src_install() { while read -r line; do einfo " $(echo "${line}" | sed -e "s/.*types\.ModuleType('\([^']\+\)').*/\1/")" done < "${nspkg_pth_file}" - if ! has "${EAPI:-0}" 0 1 2 3; then - rm -f "${nspkg_pth_file}" || die "Deletion of '${nspkg_pth_file}' failed" - fi + #if ! has "${EAPI:-0}" 0 1 2 3; then + # rm -f "${nspkg_pth_file}" || die "Deletion of '${nspkg_pth_file}' failed" + #fi done einfo fi |