diff options
author | Mike Gilbert <floppym@gentoo.org> | 2014-05-19 05:00:34 +0000 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2014-05-19 05:00:34 +0000 |
commit | 8d8a264c57f39bd9054ea3bff9d1f644297efe04 (patch) | |
tree | c3ee8e6f6d68e30c0bf992e31e1e28c498d7ea7a /eclass | |
parent | Version bump. Removed old (diff) | |
download | gentoo-2-8d8a264c57f39bd9054ea3bff9d1f644297efe04.tar.gz gentoo-2-8d8a264c57f39bd9054ea3bff9d1f644297efe04.tar.bz2 gentoo-2-8d8a264c57f39bd9054ea3bff9d1f644297efe04.zip |
Work around bash-4.3 bug by setting PYTHONDONTWRITEBYTECODE to an empty string.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 6 | ||||
-rw-r--r-- | eclass/distutils-r1.eclass | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index b923683d99bc..35c564631c2e 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for eclass directory # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1256 2014/05/18 19:08:34 grknight Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1257 2014/05/19 05:00:34 floppym Exp $ + + 19 May 2014; Mike Gilbert <floppym@gentoo.org> distutils-r1.eclass: + Work around bash-4.3 bug by setting PYTHONDONTWRITEBYTECODE to an empty + string. 18 May 2014; Brian Evans <grknight@gentoo.org> mysql_fx.eclass: Fix a bug that prevented emerge --config to notice a changed datadir. diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 5b592123822b..72b2c33bdf63 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -1,6 +1,6 @@ # 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.95 2014/05/11 07:58:35 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v 1.96 2014/05/19 05:00:34 floppym Exp $ # @ECLASS: distutils-r1 # @MAINTAINER: @@ -476,7 +476,7 @@ distutils-r1_python_install() { debug-print "${FUNCNAME}: [${EPYTHON}] flags: ${flags}" # enable compilation for the install phase. - local -x PYTHONDONTWRITEBYTECODE + local -x PYTHONDONTWRITEBYTECODE= # python likes to compile any module it sees, which triggers sandbox # failures if some packages haven't compiled their modules yet. |