Skip to content

Commit 4cfccda

Browse files
committed
[build-script] Fix missing install-symroot flag
1 parent 6a9a430 commit 4cfccda

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

utils/build-script

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -908,6 +908,10 @@ the number of parallel build jobs to use""",
908908
"--build-jobs", str(args.build_jobs),
909909
"--workspace", SWIFT_SOURCE_ROOT
910910
]
911+
if args.install_symroot:
912+
build_script_impl_args += [
913+
"--install-symroot", os.path.abspath(args.install_symroot)
914+
]
911915
if args.build_foundation:
912916
build_script_impl_args += [
913917
"--foundation-build-type", args.foundation_build_variant

0 commit comments

Comments
 (0)