File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -73,9 +73,7 @@ while [ -n "${1:-}" ]; do
73
73
if [ " ${is_curl} " = ' 1' ] && [ " ${filetype} " != ' exe' ]; then # Verify exported curl symbols
74
74
" ${NM} " --extern-only --defined-only " ${f} " # -g -U
75
75
" ${NM} " --extern-only --defined-only " ${f} " | grep -a -F ' _curl_' | sort || false # -g -U
76
- echo ' ------------------------------'
77
- echo ' ------------------------------'
78
- " ${NM} " --extern-only --defined-only " ${f} " | grep -a -F -v ' T _curl_' && false # should not export anything else except the libcurl API
76
+ " ${NM} " --extern-only --defined-only " ${f} " | grep -a -F ' T ' | grep -a -F -v ' _curl_' && false # should not export anything else except the libcurl API
79
77
fi
80
78
elif [ " ${_OS} " = ' linux' ]; then
81
79
# NOTE: objdump -syms (-t) to show symbol visibility flags
You can’t perform that action at this time.
0 commit comments