diff options
author | Matthias Clasen <mclasen@redhat.com> | 2010-05-10 23:22:02 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2010-05-10 23:22:02 -0400 |
commit | 78079e04d6467174c476ffc323c26a1b4dd62745 (patch) | |
tree | c6b29e0cdb8cd85d48c17569fc710a6a21abdf00 /gdk/abicheck.sh | |
parent | d379ece3e5cbec025d150a8eb229422dd38c2687 (diff) | |
download | gtk+-78079e04d6467174c476ffc323c26a1b4dd62745.tar.gz |
Fix abicheck scripts
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 e8ed7f4191..e1cb6fbe02 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 -g --defined-only .libs/libgdk-x11-2.0.so | cut -d ' ' -f 3 | sort > actual-abi +nm -D -g --defined-only .libs/libgdk-x11-3.0.so | cut -d ' ' -f 3 | sort > actual-abi diff -u expected-abi actual-abi && rm -f expected-abi actual-abi |