summaryrefslogtreecommitdiff
path: root/src/check-plt.sh
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2007-10-18 19:42:21 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2007-10-18 20:09:54 +0100
commitb7d8763c58165817f3238def4d1771ce8575139e (patch)
tree0e7ceca51090b53f16a6224a2b1e70edf9f4d88f /src/check-plt.sh
parent01eb16977359c7953dbabb52e1f6a132d93839f3 (diff)
downloadcairo-b7d8763c58165817f3238def4d1771ce8575139e.tar.gz
[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.
Diffstat (limited to 'src/check-plt.sh')
-rwxr-xr-xsrc/check-plt.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/check-plt.sh b/src/check-plt.sh
index 0fdcf7493..da11056d0 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_SLO' | grep 'cairo' && status=1
+ readelf -W -r $so | grep 'JU\?MP_SLO' | grep 'cairo' && status=1
done
exit $status