File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -599,7 +599,8 @@ def create_argument_parser():
599
599
option (['--back-deploy-concurrency' ], toggle_true ('build_backdeployconcurrency' ),
600
600
help = 'build back-deployment support for concurrency' )
601
601
602
- option (['--install-back-deploy-concurrency' ], toggle_true ('install_backdeployconcurrency' ),
602
+ option (['--install-back-deploy-concurrency' ],
603
+ toggle_true ('install_backdeployconcurrency' ),
603
604
help = 'install back-deployment support libraries for concurrency' )
604
605
605
606
option (['--libcxx' ], toggle_true ('build_libcxx' ),
Original file line number Diff line number Diff line change 169
169
'only_executable_test' : False ,
170
170
'only_non_executable_test' : False ,
171
171
'infer_dependencies' : False ,
172
+ 'install_backdeployconcurrency' : False ,
172
173
'install_prefix' : targets .install_prefix (),
173
174
'install_symroot' : None ,
174
175
'install_destdir' : None ,
@@ -476,7 +477,8 @@ class BuildScriptImplOption(_BaseOption):
476
477
dest = 'test_early_swift_driver' , value = False ),
477
478
478
479
SetTrueOption ('--back-deploy-concurrency' , dest = 'build_backdeployconcurrency' ),
479
- SetTrueOption ('--install-back-deploy-concurrency' , dest = 'install_backdeployconcurrency' ),
480
+ SetTrueOption ('--install-back-deploy-concurrency' ,
481
+ dest = 'install_backdeployconcurrency' ),
480
482
SetTrueOption ('--benchmark' ),
481
483
SetTrueOption ('--clean' ),
482
484
SetTrueOption ('--dry-run' ),
You can’t perform that action at this time.
0 commit comments