summaryrefslogtreecommitdiff
path: root/gdk-pixbuf/pltcheck.sh
diff options
context:
space:
mode:
Diffstat (limited to 'gdk-pixbuf/pltcheck.sh')
-rwxr-xr-xgdk-pixbuf/pltcheck.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/gdk-pixbuf/pltcheck.sh b/gdk-pixbuf/pltcheck.sh
deleted file mode 100755
index 7c0dd52303..0000000000
--- a/gdk-pixbuf/pltcheck.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/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/libgdk_pixbuf*.so; do
- echo Checking $so for local PLT entries
- readelf -r $so | grep 'JU\?MP_SLOT' | grep 'gdk_pixbuf' && status=1
-done
-
-exit $status