Skip to content

Commit

Permalink
fix ldd call and routing
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Powell <[email protected]>
  • Loading branch information
tpowell-progress committed Nov 8, 2024
1 parent 99eebc4 commit 2cbe949
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions config/software/ruby.rb
Original file line number Diff line number Diff line change
Expand Up @@ -348,8 +348,10 @@
:: Find OpenSSL so files
for /r "%source_dir%" %%f in (*.so) do (
echo Running ldd.exe on: %%f
ldd.exe "%%f" > nul 2>&1 || echo "No dependencies found for %%f"
if exist %%f (
echo Running ldd.exe on: %%f
c:\\msys2\\usr\\bin\\ldd.exe "%%f"
)
)
BATCH
end
Expand Down

0 comments on commit 2cbe949

Please sign in to comment.