From cab4e3eed1237527fcfb5e28ac5fbc20b72cbe1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Sat, 23 Aug 2008 20:13:18 +0000 Subject: [PATCH] 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] --- src/tools/python.jam | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tools/python.jam b/src/tools/python.jam index b6a7022de..af0011017 100644 --- a/src/tools/python.jam +++ b/src/tools/python.jam @@ -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) $(fwk) + : $(usage-requirements) $(framework-directory) ; } else