Improve check for internal symbols

This commit is contained in:
Behdad Esfahbod 2010-05-12 23:48:40 -04:00
parent 357d0f29c4
commit 3f93518a63
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ stat=0
so=.libs/libharfbuzz.so so=.libs/libharfbuzz.so
if test -f "$so"; then if test -f "$so"; then
echo "Checking that we are exposing internal symbols" echo "Checking that we are exposing internal symbols"
if nm $so | grep ' T _hb'; then if nm $so | grep ' T ' | grep -v ' T _fini\>\| T _init\>\| T hb_'; then
echo "Ouch, internal symbols exposed" echo "Ouch, internal symbols exposed"
stat=1 stat=1
fi fi