Skip to content

Commit 49a04b6

Browse files
committed
Replace toolset=x,y with toolset=x toolset=y in bjam invocations to allow --toolsets=gcc/cxxstd=03,gcc/cxxstd=11 to work
1 parent e3ffabc commit 49a04b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

testing/src/regression.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -772,8 +772,8 @@ def bjam_cmd( self, toolsets, args = '', *rest ):
772772
'arg' : args }
773773

774774
if toolsets:
775-
import string
776-
cmd += ' toolset=' + toolsets
775+
for toolset in toolsets.split( ',' ):
776+
cmd += ' toolset=' + toolset
777777

778778
return cmd
779779

0 commit comments

Comments
 (0)