Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/prefix:master commit in: dev-lang/python/
Date: Mon, 30 Oct 2017 16:53:39
Message-Id: 1509382397.538297eb9f73edee3a42d564deee08904ebd50f7.grobian@gentoo
1 commit: 538297eb9f73edee3a42d564deee08904ebd50f7
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 30 16:53:17 2017 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 30 16:53:17 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=538297eb
7
8 dev-lang/python: fix install of 3.6.3 on Darwin
9
10 dev-lang/python/python-3.6.3.ebuild | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/dev-lang/python/python-3.6.3.ebuild b/dev-lang/python/python-3.6.3.ebuild
14 index 6cf6bb0a9a..9a41e071f6 100644
15 --- a/dev-lang/python/python-3.6.3.ebuild
16 +++ b/dev-lang/python/python-3.6.3.ebuild
17 @@ -333,7 +333,7 @@ src_install() {
18
19 # if not using a cross-compiler, use the fresh binary
20 if ! tc-is-cross-compiler; then
21 - local -x PYTHON=./python
22 + local -x PYTHON=./python$(sed -n '/BUILDEXE=/s/^.*=\s\+//p' Makefile)
23 local -x LD_LIBRARY_PATH=${LD_LIBRARY_PATH+${LD_LIBRARY_PATH}:}.
24 local -x DYLD_LIBRARY_PATH=${DYLD_LIBRARY_PATH+${DYLD_LIBRARY_PATH}:}.
25 else