diff options
author | Matthias Clasen <mclasen@redhat.com> | 2006-01-14 04:45:22 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2006-01-14 04:45:22 +0000 |
commit | fcfefedd44d9228220f73332b498b6f442247993 (patch) | |
tree | f414dd536833baa8c8c609e935ce4fb3d55d8b95 /gdk/abicheck.sh | |
parent | 22870aa96db62fef10cbffafa4fc481af6bf381e (diff) | |
download | gdk-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-x | gdk/abicheck.sh | 2 |
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 |