diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-01-10 17:08:35 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-01-10 17:08:35 +0000 |
commit | a995501ab936af7973f8315c5e05c5551ecd919c (patch) | |
tree | 0cd26ff30894d508116fb9f1106bc9fbd7bd0bac /dev-python/pycrypto | |
parent | Remove seamonkey support, by Lars Wendler (Polynomial-C) <polynomial-c@gentoo... (diff) | |
download | gentoo-2-a995501ab936af7973f8315c5e05c5551ecd919c.tar.gz gentoo-2-a995501ab936af7973f8315c5e05c5551ecd919c.tar.bz2 gentoo-2-a995501ab936af7973f8315c5e05c5551ecd919c.zip |
Use $(PYTHON --ABI -f) instead of $(PYTHON -A -f).
(Portage version: 15180-svn/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/pycrypto')
-rw-r--r-- | dev-python/pycrypto/pycrypto-2.1.0.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dev-python/pycrypto/pycrypto-2.1.0.ebuild b/dev-python/pycrypto/pycrypto-2.1.0.ebuild index 89406231f2a4..6e4463f8cb04 100644 --- a/dev-python/pycrypto/pycrypto-2.1.0.ebuild +++ b/dev-python/pycrypto/pycrypto-2.1.0.ebuild @@ -1,6 +1,6 @@ -# 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/pycrypto/pycrypto-2.1.0.ebuild,v 1.2 2009/12/23 23:36:24 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pycrypto/pycrypto-2.1.0.ebuild,v 1.3 2010/01/10 17:08:35 arfrever Exp $ EAPI="2" SUPPORT_PYTHON_ABIS="1" @@ -46,7 +46,7 @@ src_compile() { if use doc; then rst2html.py Doc/pycrypt.rst > Doc/index.html - PYTHONPATH="$(ls -d build-$(PYTHON -A -f)/lib.*)" epydoc --config=Doc/epydoc-config --exclude-introspect="^Crypto\.(Random\.OSRNG\.nt|Util\.winrandom)$" || die "Generation of documentation failed" + PYTHONPATH="$(ls -d build-$(PYTHON --ABI -f)/lib.*)" epydoc --config=Doc/epydoc-config --exclude-introspect="^Crypto\.(Random\.OSRNG\.nt|Util\.winrandom)$" || die "Generation of documentation failed" fi } |