Skip to content

Commit

Permalink
try fix 2
Browse files Browse the repository at this point in the history
  • Loading branch information
vszakats committed Oct 16, 2024
1 parent 8263f5e commit 0d25608
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _info-bin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ while [ -n "${1:-}" ]; do
"${NM}" --extern-only --defined-only "${f}" # -g -U
"${NM}" --extern-only --defined-only "${f}" | grep -a -F ' _curl_' | sort || false # -g -U
# should not export anything else except the libcurl API
if ! "${NM}" --extern-only --defined-only "${f}" | grep -a -F -v ' T _curl_'; then
if "${NM}" --extern-only --defined-only "${f}" | grep -a -F -v ' T _curl_'; then
echo "! '${f}' exports non-curl symbols."
exit 1
fi
Expand Down

0 comments on commit 0d25608

Please sign in to comment.