Skip to content

Commit ff48740

Browse files
committed
Fix obvious typo. SWIFT_BULID_STDLIB => SWIFT_BUILD_STDLIB.
I think we didn't catch this since we also check if overlays are enabled here and generally overlays and stdlib are enabled together. It is NFC from the actual build's perspective since this just controls whether or not diagnostic information is printed out about what SDKs/etc is configured to be built.
1 parent 4058407 commit ff48740

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -827,7 +827,7 @@ message(STATUS " Assertions: ${LLVM_ENABLE_ASSERTIONS}")
827827
message(STATUS " LTO: ${SWIFT_TOOLS_ENABLE_LTO}")
828828
message(STATUS "")
829829

830-
if (SWIFT_BULID_STDLIB OR SWIFT_BUILD_SDK_OVERLAY)
830+
if (SWIFT_BUILD_STDLIB OR SWIFT_BUILD_SDK_OVERLAY)
831831

832832
message(STATUS "Building Swift standard library and overlays for SDKs: ${SWIFT_SDKS}")
833833
message(STATUS " Build type: ${SWIFT_STDLIB_BUILD_TYPE}")

0 commit comments

Comments
 (0)