Skip to content

Commit 77d421c

Browse files
committed
cmake: fix a typo in the libswift Debug bootstrapping build
1 parent a89955b commit 77d421c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

libswift/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ else()
3737
set(b0_deps ${b0_deps} swiftCore-bootstrapping0)
3838
set(b1_deps ${b1_deps} swiftCore-bootstrapping1)
3939
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
40-
set(b0_deps ${b0_deps} swiftOnoneSupport-bootstrapping0)
41-
set(b1_deps ${b1_deps} swiftOnoneSupport-bootstrapping1)
40+
set(b0_deps ${b0_deps} swiftSwiftOnoneSupport-bootstrapping0)
41+
set(b1_deps ${b1_deps} swiftSwiftOnoneSupport-bootstrapping1)
4242
endif()
4343
if(SWIFT_HOST_VARIANT_SDK IN_LIST SWIFT_DARWIN_PLATFORMS)
4444
set(b0_deps ${b0_deps} swiftDarwin-bootstrapping0)

stdlib/public/Platform/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ if(${LIBSWIFT_BUILD_MODE} STREQUAL "BOOTSTRAPPING" AND
5656
set(b0_deps swiftCore-bootstrapping0)
5757
set(b1_deps swiftCore-bootstrapping1)
5858
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
59-
set(b0_deps ${b0_deps} swiftOnoneSupport-bootstrapping0)
60-
set(b1_deps ${b1_deps} swiftOnoneSupport-bootstrapping1)
59+
set(b0_deps ${b0_deps} swiftSwiftOnoneSupport-bootstrapping0)
60+
set(b1_deps ${b1_deps} swiftSwiftOnoneSupport-bootstrapping1)
6161
endif()
6262

6363
add_swift_target_library_single(swiftDarwin-bootstrapping0 swiftDarwin

0 commit comments

Comments
 (0)