From 6d97a07dbbccad8d5174a681be91620556d9d87f Mon Sep 17 00:00:00 2001 From: Nathan Cutler Date: Mon, 5 Feb 2018 09:34:20 +0100 Subject: [PATCH] cmake: empty INSTALL_RPATH for libceph_crypto_isal.so.1.0.0 Fixes: http://tracker.ceph.com/issues/40398 Signed-off-by: Nathan Cutler --- src/crypto/isa-l/CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/crypto/isa-l/CMakeLists.txt b/src/crypto/isa-l/CMakeLists.txt index 4ed888c2f0a..05022e95f81 100644 --- a/src/crypto/isa-l/CMakeLists.txt +++ b/src/crypto/isa-l/CMakeLists.txt @@ -31,5 +31,8 @@ endif(HAVE_GOOD_YASM_ELF64) add_library(ceph_crypto_isal SHARED ${isal_crypto_plugin_srcs}) target_include_directories(ceph_crypto_isal PRIVATE ${isal_dir}/include) -set_target_properties(ceph_crypto_isal PROPERTIES VERSION 1.0.0 SOVERSION 1) +set_target_properties(ceph_crypto_isal PROPERTIES + VERSION 1.0.0 + SOVERSION 1 + INSTALL_RPATH "") install(TARGETS ceph_crypto_isal DESTINATION ${crypto_plugin_dir}) -- 2.39.5