summaryrefslogtreecommitdiff
path: root/gdk/abicheck.sh
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2006-01-14 04:45:22 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2006-01-14 04:45:22 +0000
commitfcfefedd44d9228220f73332b498b6f442247993 (patch)
treef414dd536833baa8c8c609e935ce4fb3d55d8b95 /gdk/abicheck.sh
parent22870aa96db62fef10cbffafa4fc481af6bf381e (diff)
downloadgdk-pixbuf-fcfefedd44d9228220f73332b498b6f442247993.tar.gz
Make this work on more platforms.
2006-01-13 Matthias Clasen <mclasen@redhat.com> * */abicheck.sh: Make this work on more platforms.
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 8375923e4..6832afd73 100755
--- a/gdk/abicheck.sh
+++ b/gdk/abicheck.sh
@@ -1,5 +1,5 @@
#! /bin/sh
cpp -DINCLUDE_VARIABLES -P -DALL_FILES -DGDK_ENABLE_BROKEN -DGDK_WINDOWING_X11 ${srcdir:-.}/gdk.symbols | sed -e '/^$/d' -e 's/ G_GNUC.*$//' | sort | uniq > expected-abi
-nm -D .libs/libgdk-x11-2.0.so | grep " [BDTR] " | cut -d ' ' -f 3 | sort > actual-abi
+nm -D -g --defined-only .libs/libgdk-x11-2.0.so | cut -d ' ' -f 3 | sort > actual-abi
diff -u expected-abi actual-abi && rm expected-abi actual-abi