diff options
author | Matthias Clasen <mclasen@redhat.com> | 2006-01-14 04:46:50 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2006-01-14 04:46:50 +0000 |
commit | 0cb610fbee8b8bcdd9a1e12d4d0cb573a2742187 (patch) | |
tree | 22401f72241467884dea5790a1feb10b3792855c /gtk | |
parent | d66efae8e06efb6854ea30390f82b73c35df931a (diff) | |
download | gdk-pixbuf-0cb610fbee8b8bcdd9a1e12d4d0cb573a2742187.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 'gtk')
-rwxr-xr-x | gtk/abicheck.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/abicheck.sh b/gtk/abicheck.sh index bdd727d43..b1c27f345 100755 --- a/gtk/abicheck.sh +++ b/gtk/abicheck.sh @@ -1,5 +1,5 @@ #! /bin/sh cpp -DINCLUDE_VARIABLES -P -DG_OS_UNIX -DGTK_WINDOWING_X11 -DALL_FILES ${srcdir:-.}/gtk.symbols | sed -e '/^$/d' -e 's/ G_GNUC.*$//' -e 's/ PRIVATE//' | sort > expected-abi -nm -D .libs/libgtk-x11-2.0.so | grep " [BDTR] " | cut -d ' ' -f 3 | sort > actual-abi +nm -D -g --defined-only .libs/libgtk-x11-2.0.so | cut -d ' ' -f 3 | sort > actual-abi diff -u expected-abi actual-abi && rm expected-abi actual-abi |