Skip to content

Commit

Permalink
changed print
Browse files Browse the repository at this point in the history
  • Loading branch information
smittals2 committed Feb 12, 2025
1 parent 62fe5e5 commit 706fc6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ci/run_install_shared_and_static.sh
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ test_lib_use() {
local LDD_OUTPUT=$(ldd ${APP})
echo "${LDD_OUTPUT}" | grep "${LIB_NAME}" || echo "No matches found"

if ldd ${APP} | grep -q ${LIB_NAME}.so; then
if echo "${LDD_OUTPUT}" | grep -q ${LIB_NAME}.so; then
local ACTUAL_USE_LIB_TYPE=.so
else
local ACTUAL_USE_LIB_TYPE=.a
Expand Down

0 comments on commit 706fc6f

Please sign in to comment.