summaryrefslogtreecommitdiff
path: root/gtk/abicheck.sh
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2010-05-10 23:22:02 -0400
committerMatthias Clasen <mclasen@redhat.com>2010-05-10 23:22:02 -0400
commit78079e04d6467174c476ffc323c26a1b4dd62745 (patch)
treec6b29e0cdb8cd85d48c17569fc710a6a21abdf00 /gtk/abicheck.sh
parentd379ece3e5cbec025d150a8eb229422dd38c2687 (diff)
downloadgtk+-78079e04d6467174c476ffc323c26a1b4dd62745.tar.gz
Fix abicheck scripts
Diffstat (limited to 'gtk/abicheck.sh')
-rwxr-xr-xgtk/abicheck.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/abicheck.sh b/gtk/abicheck.sh
index f657d465cf..2c9c8ea232 100755
--- a/gtk/abicheck.sh
+++ b/gtk/abicheck.sh
@@ -1,5 +1,5 @@
#! /bin/sh
cpp -DINCLUDE_VARIABLES -P -DG_OS_UNIX -DGTK_WINDOWING_X11 -DALL_FILES ${srcdir:-.}/gtk.symbols | sed -e '/^$/d' -e 's/ G_GNUC.*$//' -e 's/ PRIVATE//' | sort > expected-abi
-nm -D -g --defined-only .libs/libgtk-x11-2.0.so | cut -d ' ' -f 3 | sort > actual-abi
+nm -D -g --defined-only .libs/libgtk-x11-3.0.so | cut -d ' ' -f 3 | sort > actual-abi
diff -u expected-abi actual-abi && rm -f expected-abi actual-abi