mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-05 16:58:01 +02:00
[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:
parent
01eb169773
commit
b7d8763c58
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue