From: Deepika Upadhyay Date: Thu, 22 Jul 2021 13:18:35 +0000 (+0530) Subject: cmake: install libopentracing.so.1(dependency of libjaeger) X-Git-Tag: v17.1.0~1302^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F42451%2Fhead;p=ceph.git cmake: install libopentracing.so.1(dependency of libjaeger) fixes: dpkg-shlibdeps: error: cannot find library libopentracing.so.1 needed by debian/libjaeger/usr/lib/libjaegertracing.so.0.6.1 (ELF format: 'elf64-x86-64' abi: '0201003e00000000'; RPATH: '/build/ceph-17.0.0-6279-g97a36368/obj-x86_64-linux-gnu/external') Signed-off-by: Deepika Upadhyay --- diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 9b6d06179fc4..37ff53d8a506 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -450,6 +450,7 @@ if(WITH_JAEGER) list(APPEND jaeger_libs ${CMAKE_BINARY_DIR}/external/lib/libjaegertracing.so.0 ${CMAKE_BINARY_DIR}/external/lib/libjaegertracing.so.0.6.1 + ${CMAKE_BINARY_DIR}/external/lib/libopentracing.so.1 ${CMAKE_BINARY_DIR}/external/lib/libopentracing.so.1.6.0) install(FILES ${jaeger_libs} DESTINATION ${CMAKE_INSTALL_LIBDIR})