From: Nathan Cutler Date: Mon, 5 Feb 2018 08:34:20 +0000 (+0100) Subject: cmake: empty INSTALL_RPATH for libceph_crypto_isal.so.1.0.0 X-Git-Tag: v15.1.0~2363^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=6d97a07dbbccad8d5174a681be91620556d9d87f;p=ceph.git cmake: empty INSTALL_RPATH for libceph_crypto_isal.so.1.0.0 Fixes: http://tracker.ceph.com/issues/40398 Signed-off-by: Nathan Cutler --- 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})