Просмотр исходного кода

fix for the slash-quote issue (http://article.gmane.org/gmane.comp.lib.boost.testing/1640)

[SVN r30064]
Aleksey Gurtovoy 21 лет назад
Родитель
Сommit
300582e993
1 измененных файлов с 3 добавлено и 1 удалено
  1. 3 1
      tools/regression/xsl_reports/runner/regression.py

+ 3 - 1
tools/regression/xsl_reports/runner/regression.py

@@ -419,10 +419,12 @@ def setup(
 
 
 def bjam_command( toolsets ):
+    build_path = regression_root
+    if build_path[-1] == '\\': build_path += '\\'
     result = '%s "-sBOOST_BUILD_PATH=%s" "-sBOOST_ROOT=%s"'\
         % (
             tool_path( bjam )
-          , regression_root
+          , build_path
           , boost_root
           )
     

粤ICP备19079148号