[x86-64] check-plt.sh: match on JU?MP_SLO as on x86-64 "SLOT" is truncated

This commit is contained in:
Behdad Esfahbod 2006-09-06 16:39:18 -04:00
parent e25add77df
commit b5a64138bb

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_SLOT' | grep 'cairo\|pixman' && status=1
readelf -r $so | grep 'JU\?MP_SLO' | grep 'cairo\|pixman' && status=1
done
exit $status