Fix some glitches
authorMatthias Clasen <matthiasc@src.gnome.org>
Tue, 31 Jul 2007 17:14:12 +0000 (17:14 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Tue, 31 Jul 2007 17:14:12 +0000 (17:14 +0000)
svn path=/trunk/; revision=5658

ChangeLog
glib/pltcheck.sh

index 6c513381ce18008f10af48c7f8627d6785e446f9..8c25bab50276a9b9a5a53ba5c9b93921e2923239 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2007-07-31  Matthias Clasen  <mclasen@redhat.com>
 
+       * glib/pltcheck.sh: Fix some glitches
+
        * glib/gregex.c: Remove debug spew
 
 2007-07-21  Matthias Clasen  <mclasen@redhat.com>
index bbd30e7d6e999d5fedbb3fc298706064f1efd1e3..0be5fa26b0582bc9e6f92167908e6fce07fcabf6 100755 (executable)
@@ -14,7 +14,7 @@ for so in .libs/lib*.so; do
        # g_string_insert_c is used in g_string_append_c_inline
        # unaliased.  Couldn't find a way to fix it.
        # Same for g_once_init_enter
-       readelf -r $so | grep 'JU\?MP_SLOT' | grep -v '\<g_string_insert_c\>' | grep -v '\<g_atomic_[a-z]*_[sg]et\>' | grep -v '\<g_once_init_enter\>' grep '\<g_' && status=1
+       readelf -r $so | grep 'JU\?MP_SLOT' | grep -v '\<g_string_insert_c\>' | grep -v '\<g_atomic_[a-z]*_[sg]et\>' | grep -v '\<g_once_init_enter_impl\>' | grep '\<g_' && status=1
 done
 
 exit $status