[check-plt] Use -W flag to readelf.

Pass -W to readelf so that the output (in particular the function name)
is not clipped to fit within 80 characters.
This commit is contained in:
Chris Wilson 2007-10-18 19:42:21 +01:00
parent 01eb169773
commit b7d8763c58

View file

@ -11,7 +11,7 @@ fi
for so in .libs/lib*.so; do
echo Checking $so for local PLT entries
readelf -r $so | grep 'JU\?MP_SLO' | grep 'cairo' && status=1
readelf -W -r $so | grep 'JU\?MP_SLO' | grep 'cairo' && status=1
done
exit $status