diff options
author | Roy Marples <uberlord@gentoo.org> | 2007-08-20 08:58:42 +0000 |
---|---|---|
committer | Roy Marples <uberlord@gentoo.org> | 2007-08-20 08:58:42 +0000 |
commit | c237da2f41713a3b780fdd4009831f49ed03d0e3 (patch) | |
tree | 356ff524a94532ac5bb2f251c2a196259ab2dbc2 /dev-lang | |
parent | New release: 1.73.1. Resolves bugs #188493 and #166208. (diff) | |
download | gentoo-2-c237da2f41713a3b780fdd4009831f49ed03d0e3.tar.gz gentoo-2-c237da2f41713a3b780fdd4009831f49ed03d0e3.tar.bz2 gentoo-2-c237da2f41713a3b780fdd4009831f49ed03d0e3.zip |
export LDFLAGS="-L." -> append-ldflags "-L.", #189298
thanks to Arfrever Frehtes Taifersar Arahesis.
(Portage version: 2.1.3.6)
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/python/ChangeLog | 6 | ||||
-rw-r--r-- | dev-lang/python/python-2.5.1-r2.ebuild | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/dev-lang/python/ChangeLog b/dev-lang/python/ChangeLog index 8a3d814b1f7f..d5051fcd8ab9 100644 --- a/dev-lang/python/ChangeLog +++ b/dev-lang/python/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-lang/python # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/ChangeLog,v 1.264 2007/07/02 14:48:44 peper Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/ChangeLog,v 1.265 2007/08/20 08:58:42 uberlord Exp $ + + 20 Aug 2007; Roy Marples <uberlord@gentoo.org> python-2.5.1-r2.ebuild: + export LDFLAGS="-L." -> append-ldflags "-L.", #189298 + thanks to Arfrever Frehtes Taifersar Arahesis. 02 Jul 2007; Piotr Jaroszyński <peper@gentoo.org> python-2.3.5-r2.ebuild, python-2.3.5-r3.ebuild, python-2.3.6.ebuild, python-2.3.6-r2.ebuild, diff --git a/dev-lang/python/python-2.5.1-r2.ebuild b/dev-lang/python/python-2.5.1-r2.ebuild index ed0d04921a47..d9fb2a260b8f 100644 --- a/dev-lang/python/python-2.5.1-r2.ebuild +++ b/dev-lang/python/python-2.5.1-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.5.1-r2.ebuild,v 1.12 2007/07/13 06:25:50 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/python-2.5.1-r2.ebuild,v 1.13 2007/08/20 08:58:42 uberlord Exp $ # NOTE about python-portage interactions : # - Do not add a pkg_setup() check for a certain version of portage @@ -164,7 +164,7 @@ src_compile() { # set LDFLAGS so we link modules with -lpython2.5 correctly. # Needed on FreeBSD unless python2.5 is already installed. # Please query BSD team before removing this! - export LDFLAGS="-L." + append-ldflags "-L." econf \ --with-fpectl \ |