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

Corrected a python framework directory detection bug in the Boost Build python.jam toolset module. Affected only builds running on the darwin os.

[SVN r48322]
This commit is contained in:
Jurko Gospodnetić
2008-08-23 20:13:18 +00:00
parent d90fdf0339
commit cab4e3eed1

View File

@@ -868,9 +868,9 @@ local rule configure ( version ? : cmd-or-prefix ? : includes * : libraries ? :
framework-directory = $(framework-directory:D) ;
}
if $(framework-directory) = Python.framework
if $(framework-directory:D=) = Python.framework
{
debug-message framework directory is \"$(fwk)\" ;
debug-message framework directory is \"$(framework-directory)\" ;
}
else
{
@@ -925,7 +925,7 @@ local rule configure ( version ? : cmd-or-prefix ? : includes * : libraries ? :
:
: $(target-requirements)
:
: $(usage-requirements) <framework>$(fwk)
: $(usage-requirements) <framework>$(framework-directory)
;
}
else