From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id F26721388BF for ; Thu, 14 Jan 2016 12:07:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8CCE6E0853; Thu, 14 Jan 2016 12:07:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2E504E0853 for ; Thu, 14 Jan 2016 12:07:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 56B48340B08 for ; Thu, 14 Jan 2016 12:07:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0AAF2CB3 for ; Thu, 14 Jan 2016 12:07:32 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1452773244.51530c3a2f3617ba5ff4a9cac4e6f4c28ddd83e0.grobian@gentoo> Subject: [gentoo-commits] repo/proj/prefix:master commit in: dev-lang/python/ X-VCS-Repository: repo/proj/prefix X-VCS-Files: dev-lang/python/python-3.4.3-r5.ebuild dev-lang/python/python-3.5.1.ebuild X-VCS-Directories: dev-lang/python/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 51530c3a2f3617ba5ff4a9cac4e6f4c28ddd83e0 X-VCS-Branch: master Date: Thu, 14 Jan 2016 12:07:32 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 9f9d3169-73e0-4dd7-b3f9-cd37b7be9e31 X-Archives-Hash: 0e130853c9b7743e17586b18a01b18d5 commit: 51530c3a2f3617ba5ff4a9cac4e6f4c28ddd83e0 Author: Fabian Groffen gentoo org> AuthorDate: Thu Jan 14 12:07:24 2016 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Thu Jan 14 12:07:24 2016 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=51530c3a dev-lang/python: fix installing on Darwin Package-Manager: portage-2.2.20-prefix dev-lang/python/python-3.4.3-r5.ebuild | 1 + dev-lang/python/python-3.5.1.ebuild | 1 + 2 files changed, 2 insertions(+) diff --git a/dev-lang/python/python-3.4.3-r5.ebuild b/dev-lang/python/python-3.4.3-r5.ebuild index 1d61ff7..b7f35bc 100644 --- a/dev-lang/python/python-3.4.3-r5.ebuild +++ b/dev-lang/python/python-3.4.3-r5.ebuild @@ -344,6 +344,7 @@ src_install() { if ! tc-is-cross-compiler; then local -x PYTHON=./python$([[ ${CHOST} == *-darwin* ]] && echo ".exe") local -x LD_LIBRARY_PATH=${LD_LIBRARY_PATH+${LD_LIBRARY_PATH}:}. + local -x DYLD_LIBRARY_PATH=${DYLD_LIBRARY_PATH+${DYLD_LIBRARY_PATH}:}. else vars=( PYTHON "${vars[@]}" ) fi diff --git a/dev-lang/python/python-3.5.1.ebuild b/dev-lang/python/python-3.5.1.ebuild index 42acfd9..2b22254 100644 --- a/dev-lang/python/python-3.5.1.ebuild +++ b/dev-lang/python/python-3.5.1.ebuild @@ -347,6 +347,7 @@ src_install() { if ! tc-is-cross-compiler; then local -x PYTHON=./python$([[ ${CHOST} == *-darwin* ]] && echo ".exe") local -x LD_LIBRARY_PATH=${LD_LIBRARY_PATH+${LD_LIBRARY_PATH}:}. + local -x DYLD_LIBRARY_PATH=${DYLD_LIBRARY_PATH+${DYLD_LIBRARY_PATH}:}. else vars=( PYTHON "${vars[@]}" ) fi