diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-10-31 04:02:01 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-10-31 04:02:01 +0000 |
commit | 8299b943c3e506e269c133d38da01d91232ab42b (patch) | |
tree | 4dfff652e09f9afe02fad1d0372ee3b877273c64 /dev-lang/python/python-3.2.2.ebuild | |
parent | Version bump. (diff) | |
download | gentoo-2-8299b943c3e506e269c133d38da01d91232ab42b.tar.gz gentoo-2-8299b943c3e506e269c133d38da01d91232ab42b.tar.bz2 gentoo-2-8299b943c3e506e269c133d38da01d91232ab42b.zip |
Drop unnecessary USE=kernel_linux check in plat-linux3 setup.
(Portage version: 2.2.0_alpha71/cvs/Linux x86_64)
Diffstat (limited to 'dev-lang/python/python-3.2.2.ebuild')
-rw-r--r-- | dev-lang/python/python-3.2.2.ebuild | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/dev-lang/python/python-3.2.2.ebuild b/dev-lang/python/python-3.2.2.ebuild index e4be16e822eb..a18d84eb9f29 100644 --- a/dev-lang/python/python-3.2.2.ebuild +++ b/dev-lang/python/python-3.2.2.ebuild @@ -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/dev-lang/python/python-3.2.2.ebuild,v 1.2 2011/10/27 13:56:55 neurogeek Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-3.2.2.ebuild,v 1.3 2011/10/31 04:02:01 vapier Exp $ EAPI="3" WANT_AUTOMAKE="none" @@ -106,10 +106,8 @@ src_prepare() { EPATCH_EXCLUDE="${excluded_patches}" EPATCH_SUFFIX="patch" epatch "${patchset_dir}" - #Linux-3 compat. Bug #374579 (upstream issue12571) - if use kernel_linux; then - cp -r "${S}/Lib/plat-linux2" "${S}/Lib/plat-linux3" || die "copy plat-linux failed" - fi + # Linux-3 compat. Bug #374579 (upstream issue12571) + cp -r "${S}/Lib/plat-linux2" "${S}/Lib/plat-linux3" || die sed -i -e "s:@@GENTOO_LIBDIR@@:$(get_libdir):g" \ Lib/distutils/command/install.py \ |