diff options
author | 2011-08-19 12:16:56 +0000 | |
---|---|---|
committer | 2011-08-19 12:16:56 +0000 | |
commit | fe948a2e3ab777e0f926e43c3a64e7ebcd9434ea (patch) | |
tree | c553006e3d9d142facbab523d16ad4186c9f7cad /eclass | |
parent | Depend on dbus[X] for session management (diff) | |
download | gentoo-2-fe948a2e3ab777e0f926e43c3a64e7ebcd9434ea.tar.gz gentoo-2-fe948a2e3ab777e0f926e43c3a64e7ebcd9434ea.tar.bz2 gentoo-2-fe948a2e3ab777e0f926e43c3a64e7ebcd9434ea.zip |
revert as suggested by Arfrever
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 941b4651fe5f..2256c97d42f6 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.129 2011/08/19 10:18:59 lxnay Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.130 2011/08/19 12:16:56 lxnay Exp $ # @ECLASS: python.eclass # @MAINTAINER: @@ -421,7 +421,7 @@ python_pkg_setup() { PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" fi - if has "${EAPI:-0}" 0 1 && [[ -n "${PYTHON_USE_WITH}" || -n "${PYTHON_USE_WITH_OR}" ]]; then + if ! has "${EAPI:-0}" 0 1 && [[ -n "${PYTHON_USE_WITH}" || -n "${PYTHON_USE_WITH_OR}" ]]; then if [[ "${PYTHON_USE_WITH_OPT}" ]]; then if [[ "${PYTHON_USE_WITH_OPT}" == !* ]]; then use ${PYTHON_USE_WITH_OPT#!} && return |