We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8263f5e commit 0d25608Copy full SHA for 0d25608
_info-bin.sh
@@ -74,7 +74,7 @@ while [ -n "${1:-}" ]; do
74
"${NM}" --extern-only --defined-only "${f}" # -g -U
75
"${NM}" --extern-only --defined-only "${f}" | grep -a -F ' _curl_' | sort || false # -g -U
76
# should not export anything else except the libcurl API
77
- 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
78
echo "! '${f}' exports non-curl symbols."
79
exit 1
80
fi
0 commit comments