diff options
author | Manish Singh <yosh@gimp.org> | 2004-11-16 03:03:49 +0000 |
---|---|---|
committer | Manish Singh <yosh@src.gnome.org> | 2004-11-16 03:03:49 +0000 |
commit | b3121f550a29105a1e8ae9068467b8d093f30a22 (patch) | |
tree | 863d833ead5936bb0597aee53eda5ab4cd513172 /gtk/abicheck.sh | |
parent | 8a5db20e4809409e8148ed3c29c9de64a5893eeb (diff) | |
download | gtk+-b3121f550a29105a1e8ae9068467b8d093f30a22.tar.gz |
gdk/abicheck.sh don't hardcode lengths for cut, instead split on the third
Mon Nov 15 19:02:07 2004 Manish Singh <yosh@gimp.org>
* gdk/abicheck.sh
* gtk/abicheck.sh: don't hardcode lengths for cut, instead split on
the third field.
Diffstat (limited to 'gtk/abicheck.sh')
-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 e831a0a149..327c1b5308 100755 --- a/gtk/abicheck.sh +++ b/gtk/abicheck.sh @@ -1,5 +1,5 @@ #! /bin/sh cpp -P -DG_OS_UNIX -DGTK_WINDOWING_X11 ${srcdir:-.}/gtk.symbols | sed -e '/^$/d' | sort > expected-abi -nm -D .libs/libgtk-x11-2.0.so | grep " T " | cut -c12- | sort > actual-abi +nm -D .libs/libgtk-x11-2.0.so | grep " T " | cut -d ' ' -f 3 | sort > actual-abi diff -u expected-abi actual-abi && rm expected-abi actual-abi |