Skip to content

Commit 7e88424

Browse files
authored
Merge pull request #23608 from atrick/fix-build-script
build-script fix for --extra-swift-args.
2 parents ecb539f + 266365a commit 7e88424

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utils/build-script

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -763,8 +763,8 @@ class BuildScriptInvocation(object):
763763
# add them as one command.
764764
if args.extra_swift_args:
765765
impl_args += [
766-
"--extra-swift-args",
767-
";".join(args.extra_swift_args)]
766+
"--extra-swift-args=%s" % ';'.join(args.extra_swift_args)
767+
]
768768

769769
# If we have extra_cmake_options, combine all of them together and then
770770
# add them as one command.

0 commit comments

Comments
 (0)