From 4f8e068b67480c5c43f875cc14c22601d5c8a297 Mon Sep 17 00:00:00 2001 From: SlavSlavov <26271135+SlavSlavov@users.noreply.github.com> Date: Thu, 27 Sep 2018 22:31:40 +0100 Subject: [PATCH] Update Findsodium.cmake A STREQUAL was left during the previous fix. Removed now. --- contrib/Findsodium.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/Findsodium.cmake b/contrib/Findsodium.cmake index a846303c..0667920c 100644 --- a/contrib/Findsodium.cmake +++ b/contrib/Findsodium.cmake @@ -55,7 +55,7 @@ if (UNIX) endif() if(sodium_USE_STATIC_LIBS) - if (sodium_PKG_STATIC_LIBRARIES STREQUAL) + if (sodium_PKG_STATIC_LIBRARIES) foreach(_libname ${sodium_PKG_STATIC_LIBRARIES}) if (NOT _libname MATCHES "^lib.*\\.a$") # ignore strings already ending with .a list(INSERT sodium_PKG_STATIC_LIBRARIES 0 "lib${_libname}.a")