Skip to content

Commit 373b9e1

Browse files
committed
[Build] Properly respect the darwin-crash-reporter-client setting.
This was being turned on even when set to zero, because of the logic in `build-script-impl`. rdar://90839754
1 parent 81f49a8 commit 373b9e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/build-script-impl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1670,7 +1670,7 @@ for host in "${ALL_HOSTS[@]}"; do
16701670
if [[ "${DARWIN_CRASH_REPORTER_CLIENT}" ]] ; then
16711671
swift_cmake_options=(
16721672
"${swift_cmake_options[@]}"
1673-
-DSWIFT_RUNTIME_CRASH_REPORTER_CLIENT:BOOL=TRUE
1673+
-DSWIFT_RUNTIME_CRASH_REPORTER_CLIENT:BOOL=$(true_false "${DARWIN_CRASH_REPORTER_CLIENT}")
16741674
)
16751675
fi
16761676

0 commit comments

Comments
 (0)