diff options
author | Sergei Golubchik <serg@mariadb.org> | 2020-08-02 10:30:46 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2020-10-23 13:37:26 +0200 |
commit | 6cefe7d31ef43cadb905d71be743462825c7b4ff (patch) | |
tree | 277c1f5619da87a438b34a248240c25bdf5a1644 /wsrep | |
parent | 641f81baf45212569ec8a98072d62fd29e3fc8f0 (diff) | |
download | mariadb-git-6cefe7d31ef43cadb905d71be743462825c7b4ff.tar.gz |
cleanup: use predefined CMAKE_DL_LIBS
instead of, say, MY_SEARCH_LIBS(dlopen dl LIBDL)
Diffstat (limited to 'wsrep')
-rw-r--r-- | wsrep/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wsrep/CMakeLists.txt b/wsrep/CMakeLists.txt index 061cb9f4a32..b8abcaf9613 100644 --- a/wsrep/CMakeLists.txt +++ b/wsrep/CMakeLists.txt @@ -23,4 +23,4 @@ ADD_CONVENIENCE_LIBRARY(wsrep ${WSREP_SOURCES}) DTRACE_INSTRUMENT(wsrep) #ADD_EXECUTABLE(listener wsrep_listener.c ${WSREP_SOURCES}) -#TARGET_LINK_LIBRARIES(listener ${LIBDL}) +#TARGET_LINK_LIBRARIES(listener ${CMAKE_DL_LIBS}) |