diff options
author | Riccardo Spagni <ric@spagni.net> | 2014-10-06 15:01:00 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2014-10-06 18:08:32 +0200 |
commit | 8c00098c7508d7985d8724f295597fb8d70db7ff (patch) | |
tree | 32534cef665d158c4ffb8c3135f64a55d9656f93 /external | |
parent | build libunbound from external if no local libunbound or for static builds (diff) | |
download | monero-8c00098c7508d7985d8724f295597fb8d70db7ff.tar.xz |
fix missing parentheses
Diffstat (limited to 'external')
-rwxr-xr-x | external/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/external/CMakeLists.txt b/external/CMakeLists.txt index 2b5d81f28..2e6a2f86d 100755 --- a/external/CMakeLists.txt +++ b/external/CMakeLists.txt @@ -86,7 +86,7 @@ IF(UNBOUND_INCLUDE_DIR) ELSE() MESSAGE(FATAL_ERROR "${BoldRed}Found libunbound includes, but could not find libunbound library. Please make sure you have installed libunbound or libunbound-dev or the equivalent${ColourReset}") ENDIF() -ELSE +ELSE() if(STATIC) message(STATUS "Using libunbound from local source tree for static build") else() |