diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-12-09 03:10:09 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-12-09 03:10:09 +0000 |
commit | 1a807caa891b5d00664c52b341bcf2620a2a7cf7 (patch) | |
tree | 6fdd8fc977893201fe5beb0d79fe5780538276e5 /dev-lang | |
parent | Add ~x86-fbsd #342443 (diff) | |
download | gentoo-2-1a807caa891b5d00664c52b341bcf2620a2a7cf7.tar.gz gentoo-2-1a807caa891b5d00664c52b341bcf2620a2a7cf7.tar.bz2 gentoo-2-1a807caa891b5d00664c52b341bcf2620a2a7cf7.zip |
Replace hardcoded /lib64 searching with /<abi_libdir> paths.
(Portage version: 2.2.0_alpha79/cvs/Linux x86_64)
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/python/ChangeLog | 5 | ||||
-rw-r--r-- | dev-lang/python/python-3.2.2.ebuild | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/dev-lang/python/ChangeLog b/dev-lang/python/ChangeLog index e853cc0a25fb..10f1a63c8b2b 100644 --- a/dev-lang/python/ChangeLog +++ b/dev-lang/python/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-lang/python # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/ChangeLog,v 1.560 2011/12/01 13:58:42 djc Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/ChangeLog,v 1.561 2011/12/09 03:10:09 vapier Exp $ + + 09 Dec 2011; Mike Frysinger <vapier@gentoo.org> python-3.2.2.ebuild: + Replace hardcoded /lib64 searching with /<abi_libdir> paths. 01 Dec 2011; Dirkjan Ochtman <djc@gentoo.org> python-2.7.2-r3.ebuild, python-3.1.4-r3.ebuild, python-3.2.2.ebuild: diff --git a/dev-lang/python/python-3.2.2.ebuild b/dev-lang/python/python-3.2.2.ebuild index 95f257112457..debdd0c038de 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.4 2011/12/01 13:58:42 djc Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-3.2.2.ebuild,v 1.5 2011/12/09 03:10:09 vapier Exp $ EAPI="3" WANT_AUTOMAKE="none" @@ -119,6 +119,8 @@ src_prepare() { Modules/Setup.dist \ Modules/getpath.c \ setup.py || die "sed failed to replace @@GENTOO_LIBDIR@@" + # The setup.py file hardcodes /usr/lib64! + sed -i -e "s:/lib64:/$(get_libdir):g" setup.py || die if ! use wininst; then # Remove Microsoft Windows executables. |