summaryrefslogtreecommitdiff
path: root/gdk-pixbuf/abicheck.sh
diff options
context:
space:
mode:
authorManish Singh <yosh@gimp.org>2004-11-16 03:01:57 +0000
committerManish Singh <yosh@src.gnome.org>2004-11-16 03:01:57 +0000
commit8a5db20e4809409e8148ed3c29c9de64a5893eeb (patch)
tree10686ad39e3ccec1c6668e18305a139edb6175fc /gdk-pixbuf/abicheck.sh
parent4f9db59bfd813196e49b3d0beae51d2fe84f46ec (diff)
downloadgdk-pixbuf-8a5db20e4809409e8148ed3c29c9de64a5893eeb.tar.gz
_gdk_pixbuf_lock now returns a gboolean.
Mon Nov 15 18:58:22 2004 Manish Singh <yosh@gimp.org> * gdk-pixbuf-private.h: _gdk_pixbuf_lock now returns a gboolean. * abicheck.sh: don't hardcode lengths for cut, instead split on the third field.
Diffstat (limited to 'gdk-pixbuf/abicheck.sh')
-rwxr-xr-xgdk-pixbuf/abicheck.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk-pixbuf/abicheck.sh b/gdk-pixbuf/abicheck.sh
index 5932bb84b..fe617da64 100755
--- a/gdk-pixbuf/abicheck.sh
+++ b/gdk-pixbuf/abicheck.sh
@@ -1,5 +1,5 @@
#! /bin/sh
cpp -P ${srcdir:-.}/gdk-pixbuf.symbols | sed -e '/^$/d' | sort > expected-abi
-nm -D .libs/libgdk_pixbuf-2.0.so | grep " T " | cut -c12- | sort > actual-abi
+nm -D .libs/libgdk_pixbuf-2.0.so | grep " T " | cut -d ' ' -f 3 | sort > actual-abi
diff -u expected-abi actual-abi && rm expected-abi actual-abi