2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 13:02:11 +00:00

Fix more python configuration bugs

[SVN r35455]
This commit is contained in:
Dave Abrahams
2006-10-03 13:45:22 +00:00
parent 2f92974d99
commit b6fcbb2254

View File

@@ -177,7 +177,8 @@ rule init-unix ( version ? : root ? : includes ? : libraries ? : condition * )
# Form the python commands to try in order. First look for python
# with the explicit version number, then without it
local cmds = $(bin:E="")python$(version:E="") $(bin:E="")python ;
local python = python ;
local cmds = $(python:D=$(bin:E=""))$(version:E="") $(python:D=$(bin:E="")) ;
local interpreter ;
while $(cmds)
@@ -276,7 +277,7 @@ rule init-unix ( version ? : root ? : includes ? : libraries ? : condition * )
case OSF :
{
extra-libs = pthread z ;
extra-libs = pthread ;
extra-libs-conditional = <toolset>gcc:<source>rt ;
}