diff options
author | Mike Gilbert <floppym@gentoo.org> | 2012-09-27 22:42:48 +0000 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2012-09-27 22:42:48 +0000 |
commit | 1ec7fb4f92b7fa9206eb721343e22d4d82ed6930 (patch) | |
tree | 13e9aee8eb945256384a0973842af543849fe61a /eclass/python.eclass | |
parent | Remove old. (diff) | |
download | gentoo-2-1ec7fb4f92b7fa9206eb721343e22d4d82ed6930.tar.gz gentoo-2-1ec7fb4f92b7fa9206eb721343e22d4d82ed6930.tar.bz2 gentoo-2-1ec7fb4f92b7fa9206eb721343e22d4d82ed6930.zip |
Remove a silly EAPI conditional.
Diffstat (limited to 'eclass/python.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 838aff875545..177992188e2b 100644 --- a/eclass/python.eclass +++ b/eclass/python.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/python.eclass,v 1.158 2012/09/27 15:41:56 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.159 2012/09/27 22:42:48 floppym Exp $ # @ECLASS: python.eclass # @MAINTAINER: @@ -753,7 +753,7 @@ _python_calculate_PYTHON_ABIS() { _python_initial_sanity_checks - if [[ "$(declare -p PYTHON_ABIS 2> /dev/null)" != "declare -x PYTHON_ABIS="* ]] && has "${EAPI:-0}" 0 1 2 3 4; then + if [[ "$(declare -p PYTHON_ABIS 2> /dev/null)" != "declare -x PYTHON_ABIS="* ]]; then local PYTHON_ABI if [[ "$(declare -p USE_PYTHON 2> /dev/null)" == "declare -x USE_PYTHON="* ]]; then |