From 9f34261ed422f5122bc7da43a050ae2f1c0da164 Mon Sep 17 00:00:00 2001 From: Max Desiatov Date: Tue, 15 Jul 2025 17:20:43 +0100 Subject: [PATCH] CMakeLists.txt: fix status message for `swift-collections` The current configuration status message is quite confusing: ``` -- _SwiftCollections_SourceDIR provided, using swift-foundation-icu checkout at ``` which clearly should be ``` -- _SwiftCollections_SourceDIR provided, using swift-collections checkout at ``` --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6e1f9ffba..92e6c5c68 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -79,7 +79,7 @@ else() endif() if (_SwiftCollections_SourceDIR) - message(STATUS "_SwiftCollections_SourceDIR provided, using swift-foundation-icu checkout at ${_SwiftCollections_SourceDIR}") + message(STATUS "_SwiftCollections_SourceDIR provided, using swift-collections checkout at ${_SwiftCollections_SourceDIR}") FetchContent_Declare(SwiftCollections SOURCE_DIR ${_SwiftCollections_SourceDIR}) else()