gtk2/gtk/pltcheck.sh

18 lines
284 B
Bash
Raw Normal View History

#!/bin/sh
LANG=C
status=0
if ! which readelf 2>/dev/null >/dev/null; then
echo "'readelf' not found; skipping test"
exit 0
fi
for so in .libs/lib*.so; do
echo Checking $so for local PLT entries
readelf -r $so | grep 'JU\?MP_SLOT' | grep '\<gtk' && status=1
done
exit $status