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.
This commit is contained in:
parent
8a5db20e48
commit
b3121f550a
@ -1,3 +1,9 @@
|
||||
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.
|
||||
|
||||
2004-11-15 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkimagemenuitem.c (gtk_image_menu_item_setting_changed):
|
||||
|
@ -1,3 +1,9 @@
|
||||
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.
|
||||
|
||||
2004-11-15 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkimagemenuitem.c (gtk_image_menu_item_setting_changed):
|
||||
|
@ -1,3 +1,9 @@
|
||||
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.
|
||||
|
||||
2004-11-15 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkimagemenuitem.c (gtk_image_menu_item_setting_changed):
|
||||
|
@ -1,3 +1,9 @@
|
||||
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.
|
||||
|
||||
2004-11-15 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkimagemenuitem.c (gtk_image_menu_item_setting_changed):
|
||||
|
@ -1,5 +1,5 @@
|
||||
#! /bin/sh
|
||||
|
||||
cpp -P -DGDK_WINDOWING_X11 ${srcdir:-.}/gdk.symbols | sed -e '/^$/d' | sort > expected-abi
|
||||
nm -D .libs/libgdk-x11-2.0.so | grep " T " | cut -c12- | sort > actual-abi
|
||||
nm -D .libs/libgdk-x11-2.0.so | grep " T " | cut -d ' ' -f 3 | sort > actual-abi
|
||||
diff -u expected-abi actual-abi && rm expected-abi actual-abi
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user