[gdk-pixbuf] Fix the pltcheck.sh script to actually catch PLT entries



commit 92585fcb8b5a3a4d82d9612b04297bfe7c2cae4b
Author: Matthias Clasen <mclasen redhat com>
Date:   Tue Jul 6 08:14:19 2010 -0400

    Fix the pltcheck.sh script to actually catch PLT entries
    
    On my system, readelf lost the final T in JUMP_SLOT, emitting
    R_X86_64_JUMP_SLO.

 gdk-pixbuf/pltcheck.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gdk-pixbuf/pltcheck.sh b/gdk-pixbuf/pltcheck.sh
index 7c0dd52..ba9c727 100755
--- a/gdk-pixbuf/pltcheck.sh
+++ b/gdk-pixbuf/pltcheck.sh
@@ -11,7 +11,7 @@ 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
+	readelf -r $so | grep 'JU\?MP_SLO' | grep 'gdk_pixbuf' && status=1
 done
 
 exit $status



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]