Browse Source

Undo --toolset= change, as it breaks with multi-toolset tests.

[SVN r36300]
Vladimir Prus 19 years ago
parent
commit
29f7951975
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tools/regression/xsl_reports/runner/regression.py

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

@@ -494,7 +494,7 @@ def bjam_command( toolsets, v2 ):
 
     if not toolsets is None:
         if v2:
-            result += ' "--toolset=%s"' % string.join( string.split( toolsets, ',' ), ' ' )
+            result += ' ' + string.join(string.split( toolsets, ',' ), ' ' )
         else:
             result += ' "-sTOOLS=%s"' % string.join( string.split( toolsets, ',' ), ' ' )
 

粤ICP备19079148号