From 172d6e01d5079f445044da9fe0823ceb353bdc86 Mon Sep 17 00:00:00 2001 From: Nathan Cutler Date: Wed, 20 Oct 2021 12:51:02 +0200 Subject: [PATCH] rgw/tracing: unify SO version numbers within librgw2 package The librgw2 package contains several SO files. Two of those - librgw_op_tp.so and librgw_rados_tp.so - had a different version number than the main librgw. This was a violation of the openSUSE Shared Library Packaging Policy [1] but it also seems like a "violation" of common sense. [1] https://en.opensuse.org/openSUSE:Shared_library_packaging_policy#Package_naming Fixes: https://tracker.ceph.com/issues/52979 Signed-off-by: Nathan Cutler --- src/tracing/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tracing/CMakeLists.txt b/src/tracing/CMakeLists.txt index 62d17c17fe80c..0044299a44bba 100644 --- a/src/tracing/CMakeLists.txt +++ b/src/tracing/CMakeLists.txt @@ -46,8 +46,8 @@ add_tracing_library(osd_tp "${osd_traces}" 1.0.0) add_tracing_library(rados_tp librados.tp 2.0.0) add_tracing_library(os_tp objectstore.tp 1.0.0) add_tracing_library(bluestore_tp bluestore.tp 1.0.0) -add_tracing_library(rgw_op_tp rgw_op.tp 1.0.0) -add_tracing_library(rgw_rados_tp rgw_rados.tp 1.0.0) +add_tracing_library(rgw_op_tp rgw_op.tp 2.0.0) +add_tracing_library(rgw_rados_tp rgw_rados.tp 2.0.0) install(TARGETS rados_tp osd_tp os_tp rgw_rados_tp rgw_op_tp DESTINATION ${CMAKE_INSTALL_LIBDIR}) if(WITH_RBD)