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

Mark python as configured even if we couldn't find the includes or libraries. We try to forge ahead anyway, and saying we didn't just causes more problems. We should consider erroring out in this case, instead, but for now this change is minimally disruptive.

This commit is contained in:
Steven Watanabe
2016-02-27 11:41:34 -07:00
parent 09b6788df6
commit 1a0a48af96

View File

@@ -798,17 +798,15 @@ local rule configure ( version ? : cmd-or-prefix ? : includes * : libraries ? :
}
# Anything left to compute?
if $(includes) && $(libraries)
{
.configured = true ;
}
else
if ! ( $(includes) && $(libraries) )
{
version ?= $(fallback-version) ;
version ?= 2.5 ;
exec-prefix ?= $(prefix) ;
compute-default-paths $(target-os) : $(version) : $(prefix:E=) ;
}
.configured = true ;
if ! $(interpreter-cmd)
{