diff options
author | 2010-02-06 14:53:27 +0000 | |
---|---|---|
committer | 2010-02-06 14:53:27 +0000 | |
commit | 9cb907a177d6384cdb17137bf7f3deac632b1dd6 (patch) | |
tree | 897a94c77811df435f0f9b2e8a53eb5b867792dd /dev-python | |
parent | Use $(PYTHON) instead of ${python}. (diff) | |
download | gentoo-2-9cb907a177d6384cdb17137bf7f3deac632b1dd6.tar.gz gentoo-2-9cb907a177d6384cdb17137bf7f3deac632b1dd6.tar.bz2 gentoo-2-9cb907a177d6384cdb17137bf7f3deac632b1dd6.zip |
Use $(PYTHON -f) instead of ${python}.
(Portage version: 15324-svn/cvs/Linux x86_64)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/traits/traits-3.2.0.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dev-python/traits/traits-3.2.0.ebuild b/dev-python/traits/traits-3.2.0.ebuild index c9177fb6ed37..3b3fc6acdb8f 100644 --- a/dev-python/traits/traits-3.2.0.ebuild +++ b/dev-python/traits/traits-3.2.0.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/traits/traits-3.2.0.ebuild,v 1.5 2009/11/08 19:57:11 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/traits/traits-3.2.0.ebuild,v 1.6 2010/02/06 14:53:27 arfrever Exp $ EAPI="2" +PYTHON_DEPEND="2" SUPPORT_PYTHON_ABIS="1" inherit distutils @@ -38,8 +39,7 @@ src_prepare() { src_compile() { distutils_src_compile if use doc; then - "${python}" setup.py build_docs --formats=html \ - || die "doc building failed" + "$(PYTHON -f)" setup.py build_docs --formats=html || die "Generation of documentation failed" fi } |