summaryrefslogtreecommitdiff
path: root/src/check-plt.sh
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2007-07-05 18:59:31 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2007-07-05 19:15:10 +0100
commit5819be398c4eada9a6cfc8e37a532991751b4a51 (patch)
tree3a5b3292b329a3b2627c9946da7e11ad247ba44e /src/check-plt.sh
parent35ef8419a981929b65157407485ec001b69b3391 (diff)
downloadcairo-5819be398c4eada9a6cfc8e37a532991751b4a51.tar.gz
[check-plt] Ignore entries for pixman.
pixman is now an external library, so we now expect PLT entries.
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 a441b7b76..0fdcf7493 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\|pixman' && status=1
+ readelf -r $so | grep 'JU\?MP_SLO' | grep 'cairo' && status=1
done
exit $status