diff options
author | Matthias Clasen <mclasen@redhat.com> | 2010-12-21 01:41:51 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2010-12-21 12:07:09 -0500 |
commit | 71a515ef178a8fe5f03cedccbe759912757a2302 (patch) | |
tree | 45c004684ff15845ae63ebab5530f2e7a926082b /gdk/abicheck.sh | |
parent | b4802e3042bce7032565966ed2b89499173f7f57 (diff) | |
download | gtk+-71a515ef178a8fe5f03cedccbe759912757a2302.tar.gz |
Get abicheck to almost pass again
Diffstat (limited to 'gdk/abicheck.sh')
-rwxr-xr-x | gdk/abicheck.sh | 2 |
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 |