Skip to content

Commit 5b1aa87

Browse files
committed
cmake: Fix finding of bundled openSSL library in package configuration script
1 parent 2aafdf7 commit 5b1aa87

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mysql-concpp-config.cmake.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -918,7 +918,7 @@ function(find_deps)
918918
unset(ssl_lib CACHE)
919919
find_library(ssl_lib
920920
NAMES ssl libssl
921-
PATHS ${LIB_PATH}
921+
PATHS ${LIBRARY_DIR}
922922
PATH_SUFFIXES private ${vs_suffix}
923923
NO_DEFAULT_PATH
924924
NO_CACHE
@@ -927,7 +927,7 @@ function(find_deps)
927927
unset(ssl_crypto CACHE)
928928
find_library(ssl_crypto
929929
NAMES crypto libcrypto
930-
PATHS ${LIB_PATH}
930+
PATHS ${LIBRARY_DIR}
931931
PATH_SUFFIXES private ${vs_suffix}
932932
NO_DEFAULT_PATH
933933
NO_CACHE

0 commit comments

Comments
 (0)