Gentoo Archives: gentoo-python

From: "Michał Górny" <mgorny@g.o>
To: gentoo-python@l.g.o
Cc: python@g.o, cpp@g.o, "Michał Górny" <mgorny@g.o>
Subject: [gentoo-python] [PATCH] Pass absolute Python interpreter path to boost.
Date: Sat, 15 Dec 2012 14:27:17
Message-Id: 1355581638-625-1-git-send-email-mgorny@gentoo.org
In Reply to: [gentoo-python] Re: [PATCH 1/3] Let boost figure out the Python includedir itself. by "Tiziano Müller"
1 This is the way recommended upstream, and it guarantees that our Python
2 interpreter will be used, along with paths and version obtained from it.
3 ---
4 gx86/dev-libs/boost/boost-1.52.0-r5.ebuild | 2 +-
5 1 file changed, 1 insertion(+), 1 deletion(-)
6
7 diff --git a/gx86/dev-libs/boost/boost-1.52.0-r5.ebuild b/gx86/dev-libs/boost/boost-1.52.0-r5.ebuild
8 index 10bd293..55e0f89 100644
9 --- a/gx86/dev-libs/boost/boost-1.52.0-r5.ebuild
10 +++ b/gx86/dev-libs/boost/boost-1.52.0-r5.ebuild
11 @@ -49,7 +49,7 @@ create_user-config.jam() {
12 fi
13
14 if use python; then
15 - python_configuration="using python : ${EPYTHON#python} ;"
16 + python_configuration="using python : : ${PYTHON} ;"
17 fi
18
19 cat > user-config.jam << __EOF__
20 --
21 1.8.0.2