diff options
author | Matthias Clasen <mclasen@redhat.com> | 2010-06-08 15:15:59 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2010-06-08 15:37:52 -0400 |
commit | 4bf5a171e2533a518d2b50d1f494cbd84f2fb76e (patch) | |
tree | 7ab59297dfdce9b32ae8e2e8d9eff3f83f14d5c5 /gdk/abicheck.sh | |
parent | 34deb14eff46cdba13bf022f0fa0a22a27e05061 (diff) | |
download | gtk+-4bf5a171e2533a518d2b50d1f494cbd84f2fb76e.tar.gz |
Distcheck fixes
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 422cee9a24..f4e9ace9e8 100755 --- a/gdk/abicheck.sh +++ b/gdk/abicheck.sh @@ -1,5 +1,5 @@ #! /bin/sh -cpp -DINCLUDE_VARIABLES -P -DALL_FILES -DGDK_ENABLE_BROKEN -include ${srcdir:-.}/../config.h -include ${srcdir:-.}/gdkconfig.h ${srcdir:-.}/gdk.symbols | sed -e '/^$/d' -e 's/ G_GNUC.*$//' | sort | uniq > expected-abi +cpp -DINCLUDE_VARIABLES -P -DALL_FILES -DGDK_ENABLE_BROKEN -include ../config.h -include ./gdkconfig.h ${srcdir:-.}/gdk.symbols | sed -e '/^$/d' -e 's/ G_GNUC.*$//' | sort | uniq > expected-abi nm -D -g --defined-only .libs/libgdk-x11-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 |