From 42f7383589c5e99df811adcd1a25e33d2f0a30d9 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 7 Oct 2024 05:30:12 +0200 Subject: [PATCH] CMakeLists.txt: do not compile {Objecter,Striper}.cc twice These are already part of `libceph-common`. Signed-off-by: Max Kellermann --- src/osdc/CMakeLists.txt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/osdc/CMakeLists.txt b/src/osdc/CMakeLists.txt index 205ad3d4f42e..637ce3275558 100644 --- a/src/osdc/CMakeLists.txt +++ b/src/osdc/CMakeLists.txt @@ -1,9 +1,8 @@ set(osdc_files Filer.cc ObjectCacher.cc - Objecter.cc - error_code.cc - Striper.cc) + error_code.cc) +# Objecter.cc and Striper.cc are part of libcommon add_library(osdc STATIC ${osdc_files}) target_link_libraries(osdc ceph-common) if(WITH_EVENTTRACE) -- 2.47.3