From 93822d3c6ba77d82c0c836a854db903cd62f1c51 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Tue, 23 Dec 2025 11:19:12 +0800 Subject: [PATCH] cmake: clarify WITH_CRIMSON help text The help text for WITH_CRIMSON previously read "Build seastar components", which referenced the underlying C++ framework rather than the user-facing functionality. This was confusing because users care about Ceph features, not implementation details. Change the help text to reference "Crimson" directly and explicitly state the default value, making the option's purpose clearer to users. Signed-off-by: Kefu Chai --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 546bbef96e37..766c12d677ed 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -734,7 +734,7 @@ if (WITH_SYSTEM_ROCKSDB) find_package(RocksDB 5.14 REQUIRED) endif() -option(WITH_CRIMSON "Build seastar components") +option(WITH_CRIMSON "Build Crimson components" OFF) # Boost option(WITH_SYSTEM_BOOST "require and build with system Boost" OFF) -- 2.47.3