]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
cmake: empty INSTALL_RPATH for libceph_crypto_isal.so.1.0.0
authorNathan Cutler <ncutler@suse.com>
Mon, 5 Feb 2018 08:34:20 +0000 (09:34 +0100)
committerNathan Cutler <ncutler@suse.com>
Mon, 24 Jun 2019 11:23:15 +0000 (13:23 +0200)
Fixes: http://tracker.ceph.com/issues/40398
Signed-off-by: Nathan Cutler <ncutler@suse.com>
src/crypto/isa-l/CMakeLists.txt

index 4ed888c2f0aaebe95cb41d1eb7d9332aa9893571..05022e95f81562c8e77fa4b8bdcb394b0a16f2cf 100644 (file)
@@ -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})