From e48b1c716009d6d8db44e041df9c72c36e01e1ba Mon Sep 17 00:00:00 2001 From: Thomas Powell Date: Thu, 7 Nov 2024 14:32:50 -0500 Subject: [PATCH] ldd all the openssl.so Signed-off-by: Thomas Powell --- config/software/ruby.rb | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/config/software/ruby.rb b/config/software/ruby.rb index b26346c61..4dfbb01fc 100644 --- a/config/software/ruby.rb +++ b/config/software/ruby.rb @@ -340,6 +340,11 @@ command "gem install openssl-#{openssl_gem_version}.gem --no-document -- --with-openssl-dir=#{install_dir}/embedded --with-openssl-lib=#{install_dir}/embedded/lib", env: fips_env, cwd: "#{install_dir}/openssl" command "#{install_dir}/embedded/bin/gem info openssl" + if windows? + Dir['**/openssl.so'].each do |opensslso| + command "c:/msys2/usr/bin/ldd.exe #{opensslso}" + end + end end if windows? @@ -403,8 +408,5 @@ } end command find_command - - command "echo '🤔🐴💩 <<< openssl dir >>>'" - command "find #{install_dir}" end end