Skip to content

Commit 53a239f

Browse files
committed
CDK: Fix bundling of OpenSSL libs - bundle lib symlinks together with libraries.
1 parent 581b983 commit 53a239f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cdk/cmake/DepFindSSL.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,12 +283,12 @@ function(bundle_ssl_libs)
283283

284284
# Note: On U**ix systems the files we link to are symlinks to
285285
# the actual shared libs, so we read these symlinks here and
286-
# bundle their targets.
286+
# bundle their targets as well.
287287

288288
foreach(lib ${OPENSSL_LIBRARY} ${CRYPTO_LIBRARY})
289289

290290
get_filename_component(path ${lib} REALPATH)
291-
list(APPEND glob1 ${path})
291+
list(APPEND glob1 ${lib} ${path})
292292

293293
endforeach()
294294

0 commit comments

Comments
 (0)