diff options
author | warptangent <warptangent@tutanota.com> | 2016-02-12 13:25:39 -0800 |
---|---|---|
committer | warptangent <warptangent@tutanota.com> | 2016-02-12 15:02:12 -0800 |
commit | c2f2437586aec814ba9a85951dd618373eb501f6 (patch) | |
tree | fdb614ad65eade7eae4b2827932777c2f3b6821b | |
parent | cmake: Fix unbound config compile settings (diff) | |
download | monero-c2f2437586aec814ba9a85951dd618373eb501f6.tar.xz |
cmake: Remove unused variable
DL is empty and unused elsewhere.
The intention at one point may have been to use CMAKE_DL_LIBS, but that
would more likely apply in some situations involving static linking.
Diffstat (limited to '')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index fa3b07a3e..05c747aec 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -439,7 +439,7 @@ elseif(APPLE OR FREEBSD OR OPENBSD) set(EXTRA_LIBRARIES "") elseif(NOT MSVC) find_library(RT rt) - set(EXTRA_LIBRARIES ${RT} ${DL}) + set(EXTRA_LIBRARIES ${RT}) endif() include(version.cmake) |