]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
rgw/tracing: unify SO version numbers within librgw2 package 43600/head
authorNathan Cutler <ncutler@suse.com>
Wed, 20 Oct 2021 10:51:02 +0000 (12:51 +0200)
committerNathan Cutler <ncutler@suse.com>
Wed, 20 Oct 2021 11:39:15 +0000 (13:39 +0200)
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 <ncutler@suse.com>
src/tracing/CMakeLists.txt

index 62d17c17fe80c65ffc141673ab554b664f8d16a0..0044299a44bbac985232cb6da37386920dfdde23 100644 (file)
@@ -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)