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

fixes a problem which causes a trailing space to be added to the last element of PYTHONPATH.

[SVN r13434]
This commit is contained in:
Dave Abrahams
2002-04-10 17:29:36 +00:00
parent e47fac5252
commit d758684a0c
2 changed files with 6 additions and 2 deletions

View File

@@ -405,7 +405,9 @@ rule python-runtest-aux ( target : sources + )
python = $(PYTHON_D) ;
}
PYTHONPATH on $(target) = [ join $(pythonpath) : $(splitpath) ] ;
# adding the dummy at the end fixes a problem which causes a
# trailing space to be added to the last path.
PYTHONPATH on $(target) = [ join $(pythonpath) "" : $(splitpath) ] ;
# set the path so that DLLs linked into extension modules will be
# found

View File

@@ -405,7 +405,9 @@ rule python-runtest-aux ( target : sources + )
python = $(PYTHON_D) ;
}
PYTHONPATH on $(target) = [ join $(pythonpath) : $(splitpath) ] ;
# adding the dummy at the end fixes a problem which causes a
# trailing space to be added to the last path.
PYTHONPATH on $(target) = [ join $(pythonpath) "" : $(splitpath) ] ;
# set the path so that DLLs linked into extension modules will be
# found