2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 13:02:11 +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 3e1359ab65
commit 57a64b2344

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 * )