summaryrefslogtreecommitdiff
path: root/gdk-pixbuf/abicheck.sh
diff options
context:
space:
mode:
authorManish Singh <yosh@gi,p.org>2004-11-25 22:22:10 +0000
committerManish Singh <yosh@src.gnome.org>2004-11-25 22:22:10 +0000
commit3a666542f3fac7ac59527873982e188c3a6d5ef6 (patch)
tree53b6982d138cc6281cfd668cd89012015c078af1 /gdk-pixbuf/abicheck.sh
parent3ab0c4fc7b0708644bc07aca8f9ac6e86763a078 (diff)
downloadgdk-pixbuf-3a666542f3fac7ac59527873982e188c3a6d5ef6.tar.gz
filter out G_GNUC stuff when doing the compare.
Thu Nov 25 14:21:37 2004 Manish Singh <yosh@gi,p.org> * abicheck.sh: filter out G_GNUC stuff when doing the compare.
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 fe617da64..3e39f4da5 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
+cpp -P ${srcdir:-.}/gdk-pixbuf.symbols | sed -e '/^$/d' -e 's/ G_GNUC.*$//' | sort > expected-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