]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
cmake: empty INSTALL_RPATH for libceph_crypto_openssl.so
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:21 +0000 (13:23 +0200)
See also 235448879e5e05808e10c2ad8e09f87a05d76179

Fixes: http://tracker.ceph.com/issues/40398
Signed-off-by: Nathan Cutler <ncutler@suse.com>
src/crypto/openssl/CMakeLists.txt

index 62324357cb81d28fe14a8ef64e1c74f37a52f536..2525ed9359baf03880ff86d93ad008f7cd17e812 100644 (file)
@@ -7,4 +7,5 @@ set(openssl_crypto_plugin_srcs
 add_library(ceph_crypto_openssl SHARED ${openssl_crypto_plugin_srcs})
 target_link_libraries(ceph_crypto_openssl PRIVATE crypto)
 add_dependencies(crypto_plugins ceph_crypto_openssl)
+set_target_properties(ceph_crypto_openssl PROPERTIES INSTALL_RPATH "")
 install(TARGETS ceph_crypto_openssl DESTINATION ${crypto_plugin_dir})