diff options
author | Mike Gilbert <floppym@gentoo.org> | 2014-01-18 15:06:56 +0000 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2014-01-18 15:06:56 +0000 |
commit | fd10448111518c9a7a91a9fcf82104ebaecd87e4 (patch) | |
tree | ec94c140959eba67eada27bafa3b99dae8f535c1 /eclass | |
parent | Remove old. (diff) | |
download | gentoo-2-fd10448111518c9a7a91a9fcf82104ebaecd87e4.tar.gz gentoo-2-fd10448111518c9a7a91a9fcf82104ebaecd87e4.tar.bz2 gentoo-2-fd10448111518c9a7a91a9fcf82104ebaecd87e4.zip |
Silence sandbox for /usr/local, bug 498232.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/distutils-r1.eclass | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 81707b31384d..52c8ea64426b 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1124 2014/01/18 14:53:07 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1125 2014/01/18 15:06:56 floppym Exp $ + + 18 Jan 2014; Mike Gilbert <floppym@gentoo.org> distutils-r1.eclass: + Silence sandbox for /usr/local, bug 498232. 18 Jan 2014; Mike Gilbert <floppym@gentoo.org> kernel-2.eclass: Convert to python-any-r1.eclass diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 2fbcbe7b75f1..9084f4c18473 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -1,6 +1,6 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v 1.93 2013/12/03 20:00:39 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v 1.94 2014/01/18 15:06:56 floppym Exp $ # @ECLASS: distutils-r1 # @MAINTAINER: @@ -482,6 +482,7 @@ distutils-r1_python_install() { # failures if some packages haven't compiled their modules yet. addpredict "$(python_get_sitedir)" addpredict /usr/lib/portage/pym + addpredict /usr/local # bug 498232 local root=${D}/_${EPYTHON} [[ ${DISTUTILS_SINGLE_IMPL} ]] && root=${D} |