diff options
author | Riccardo Spagni <ric@spagni.net> | 2014-10-06 15:01:00 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2014-10-06 15:01:00 +0200 |
commit | 75a616fa96b9c5ec444ae5627f90457ca6c5ef97 (patch) | |
tree | 32534cef665d158c4ffb8c3135f64a55d9656f93 | |
parent | build libunbound from external if no local libunbound or for static builds (diff) | |
download | monero-75a616fa96b9c5ec444ae5627f90457ca6c5ef97.tar.xz |
fix missing parentheses
-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() |