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 | |
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')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/python.eclass | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 0868cf88f7ed..f5aa822c1c06 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.416 2012/09/27 19:34:28 axs Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.417 2012/09/27 22:42:48 floppym Exp $ + + 27 Sep 2012; Mike Gilbert <floppym@gentoo.org> python.eclass: + Remove a silly EAPI conditional. 27 Sep 2012; Ian Stakenvicius <axs@gentoo.org> toolchain-funcs.eclass: Fixed tc-ninja_magic_to_arch() to also use KV_FULL and fail if no kernel 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 |