diff options
author | Paweł Hajdan <phajdan.jr@gentoo.org> | 2011-10-15 20:58:08 +0000 |
---|---|---|
committer | Paweł Hajdan <phajdan.jr@gentoo.org> | 2011-10-15 20:58:08 +0000 |
commit | de6440b87e6860ee8f34806840a326e4ccd5b58f (patch) | |
tree | ba5a9d5185bab2c31b64a763988988d07a368816 /eclass | |
parent | Stable on amd64 wrt bug #387209 (diff) | |
download | gentoo-2-de6440b87e6860ee8f34806840a326e4ccd5b58f.tar.gz gentoo-2-de6440b87e6860ee8f34806840a326e4ccd5b58f.tar.bz2 gentoo-2-de6440b87e6860ee8f34806840a326e4ccd5b58f.zip |
Make python.eclass not die on EAPI-4. This has been OK-ed by python team lead: http://archives.gentoo.org/gentoo-dev/msg_c211342132e8ee5249861eb6503b3ddd.xml
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/python.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/python.eclass b/eclass/python.eclass index 6d7cfadbb806..c154931b7521 100644 --- a/eclass/python.eclass +++ b/eclass/python.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.138 2011/10/07 10:57:48 djc Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.139 2011/10/15 20:58:08 phajdan.jr Exp $ # @ECLASS: python.eclass # @MAINTAINER: @@ -11,7 +11,7 @@ inherit multilib -if ! has "${EAPI:-0}" 0 1 2 3; then +if ! has "${EAPI:-0}" 0 1 2 3 4; then die "API of python.eclass in EAPI=\"${EAPI}\" not established" fi |