diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2006-09-06 16:39:18 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2006-09-06 16:39:18 -0400 |
commit | b5a64138bb9be97b96e6bf248c559e8d3c6d4ac1 (patch) | |
tree | 38cfb315763b6601a66ad98b9b8cefc15e669c0f /src/check-plt.sh | |
parent | e25add77df1cc6c89ded371f7f63b36073cb1389 (diff) |
[x86-64] check-plt.sh: match on JU?MP_SLO as on x86-64 "SLOT" is truncated
Diffstat (limited to 'src/check-plt.sh')
-rwxr-xr-x | src/check-plt.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/check-plt.sh b/src/check-plt.sh index 1dd90052..a441b7b7 100755 --- a/src/check-plt.sh +++ b/src/check-plt.sh @@ -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 |