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 854251381F3 for ; Sat, 15 Dec 2012 11:34:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B51E121C011; Sat, 15 Dec 2012 11:34:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BE63521C011 for ; Sat, 15 Dec 2012 11:34:32 +0000 (UTC) Received: from [192.168.0.102] (xdsl-188-155-33-54.adslplus.ch [188.155.33.54]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: dev-zero) by smtp.gentoo.org (Postfix) with ESMTPSA id 607F233DCAD; Sat, 15 Dec 2012 11:34:30 +0000 (UTC) Message-ID: <1355571266.795013.9.camel@storm> Subject: [gentoo-python] Re: [PATCH 1/3] Let boost figure out the Python includedir itself. From: Tiziano =?ISO-8859-1?Q?M=FCller?= To: =?UTF-8?Q?Micha=C5=82_G=C3=B3rny?= Cc: gentoo-python@lists.gentoo.org, python@gentoo.org, cpp@gentoo.org Date: Sat, 15 Dec 2012 12:34:26 +0100 In-Reply-To: <1355522916-23815-2-git-send-email-mgorny@gentoo.org> References: <1355522916-23815-1-git-send-email-mgorny@gentoo.org> <1355522916-23815-2-git-send-email-mgorny@gentoo.org> Organization: Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.4.4 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Discussions centering around the Python ecosystem in Gentoo Linux X-BeenThere: gentoo-python@gentoo.org X-BeenThere: gentoo-python@lists.gentoo.org Mime-Version: 1.0 Content-Transfer-Encoding: 8bit X-Archives-Salt: 656e2d0e-b645-455c-8de6-0a095a070686 X-Archives-Hash: 7a20270dc4163b6958ee6e2741b6030a If you checked that boost-build will ever only use what is currently explicitely specified: fine for me. What I don't want is: * boost using something in /usr/local * boost using something in some other location should it somehow fail to find our python (yes: I want to it to bail out) Am Freitag, den 14.12.2012, 23:08 +0100 schrieb Michał Górny: > The bootstrap script uses the sole version as well, and boost finds > the includes and libraries just fine. > --- > gx86/dev-libs/boost/boost-1.52.0-r5.ebuild | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/gx86/dev-libs/boost/boost-1.52.0-r5.ebuild b/gx86/dev-libs/boost/boost-1.52.0-r5.ebuild > index 8659246..4f20fdf 100644 > --- a/gx86/dev-libs/boost/boost-1.52.0-r5.ebuild > +++ b/gx86/dev-libs/boost/boost-1.52.0-r5.ebuild > @@ -50,7 +50,7 @@ create_user-config.jam() { > fi > > if use python; then > - python_configuration="using python : $(python_get_version) : /usr : $(python_get_includedir) : /usr/$(get_libdir) ;" > + python_configuration="using python : $(python_get_version) ;" > fi > > cat > user-config.jam << __EOF__