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

Fix setting of PYTHONPATH on Windows.

[SVN r33022]
This commit is contained in:
Vladimir Prus
2006-02-20 14:26:22 +00:00
parent c222cb1ee0
commit f5cc8ea47c

View File

@@ -442,7 +442,8 @@ rule capture-output ( target : sources * : properties * )
{
PYTHONPATH = [ on $(sources[2]) return $(LOCATE) ] ;
testing.capture-output $(target) : $(sources[1]) : $(properties) ;
LAUNCHER on $(target) = PYTHONPATH=$(PYTHONPATH) [ on $(target) return $(PYTHON) ] ;
local c = [ common.prepend-path-variable-command PYTHONPATH : $(PYTHONPATH) ] ;
LAUNCHER on $(target) = $(c) [ on $(target) return $(PYTHON) ] ;
}
rule bpl-test ( name : sources * : requirements * )