From: Mike Gilbert Date: Tue, 31 Oct 2017 17:36:55 +0000 (-0400) Subject: dev-lang/python: use absolute path in LD_LIBRARY_PATH X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=3f33ab5f94d42021f57824e97f59cf9d6eedff01;p=gentoo.git dev-lang/python: use absolute path in LD_LIBRARY_PATH Closes: https://bugs.gentoo.org/608312 Package-Manager: Portage-2.3.12_p5, Repoman-2.3.3_p75 --- diff --git a/dev-lang/python/python-3.5.4.ebuild b/dev-lang/python/python-3.5.4.ebuild index 6c3ebff859ad..b39e0a2d1d73 100644 --- a/dev-lang/python/python-3.5.4.ebuild +++ b/dev-lang/python/python-3.5.4.ebuild @@ -290,7 +290,7 @@ src_install() { # if not using a cross-compiler, use the fresh binary if ! tc-is-cross-compiler; then local -x PYTHON=./python - local -x LD_LIBRARY_PATH=${LD_LIBRARY_PATH+${LD_LIBRARY_PATH}:}. + local -x LD_LIBRARY_PATH=${LD_LIBRARY_PATH+${LD_LIBRARY_PATH}:}${PWD} else vars=( PYTHON "${vars[@]}" ) fi