summaryrefslogtreecommitdiff
path: root/gdk/abicheck.sh
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2010-12-21 01:41:51 -0500
committerMatthias Clasen <mclasen@redhat.com>2010-12-21 12:07:09 -0500
commit71a515ef178a8fe5f03cedccbe759912757a2302 (patch)
tree45c004684ff15845ae63ebab5530f2e7a926082b /gdk/abicheck.sh
parentb4802e3042bce7032565966ed2b89499173f7f57 (diff)
downloadgtk+-71a515ef178a8fe5f03cedccbe759912757a2302.tar.gz
Get abicheck to almost pass again
Diffstat (limited to 'gdk/abicheck.sh')
-rwxr-xr-xgdk/abicheck.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk/abicheck.sh b/gdk/abicheck.sh
index 6031ff9440..14e9e736ea 100755
--- a/gdk/abicheck.sh
+++ b/gdk/abicheck.sh
@@ -1,5 +1,5 @@
#! /bin/sh
-cpp -P -DGDK_ENABLE_BROKEN -include ../config.h -include ./gdkconfig.h ${srcdir:-.}/gdk.symbols | sed -e '/^$/d' -e 's/ G_GNUC.*$//' | sort | uniq > expected-abi
+cpp -P -DGDK_ENABLE_BROKEN -include ../config.h ${srcdir:-.}/gdk.symbols | sed -e '/^$/d' -e 's/ G_GNUC.*$//' | sort | uniq > expected-abi
nm -D -g --defined-only .libs/libgdk-3.0.so | cut -d ' ' -f 3 | egrep -v '^(__bss_start|_edata|_end)' | sort > actual-abi
diff -u expected-abi actual-abi && rm -f expected-abi actual-abi