From 66569da42e421730a397f6acd34bbc1d4b7ab9fe Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Sun, 2 Oct 2011 21:02:25 +0000 Subject: [PATCH] Autodetect Python 2.7 when building Boost.Build engine. [SVN r74660] --- v2/engine/build.jam | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v2/engine/build.jam b/v2/engine/build.jam index 266b07a17..7c2b16473 100644 --- a/v2/engine/build.jam +++ b/v2/engine/build.jam @@ -71,7 +71,7 @@ if $(with-python) { --python-include = [ .path $(python-location) include ] ; --python-lib = ; - for local v in 26 25 24 23 22 + for local v in 27 26 25 24 23 22 { --python-lib ?= [ GLOB [ .path $(python-location) libs ] : "python$(v).lib" ] @@ -94,7 +94,7 @@ if $(with-python) { --python-include = ; --python-lib = ; - for local v in 2.6 2.5 2.4 2.3 2.2 + for local v in 2.7 2.6 2.5 2.4 2.3 2.2 { local inc = [ GLOB [ .path $(python-location) include ] : python$(v) ] ; local lib = [ GLOB [ .path $(python-location) lib ] : libpython$(v)* ] ;