From: Manish Singh Date: Fri, 17 Sep 2004 01:41:30 +0000 (+0000) Subject: don't hardcode lengths for cut, instead split on the third field. X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=d8357e2c516663c1b436b43f18827c8ecd3879d5;p=dana%2Fcg-glib.git don't hardcode lengths for cut, instead split on the third field. Thu Sep 16 18:42:46 2004 Manish Singh * abicheck.sh: don't hardcode lengths for cut, instead split on the third field. --- diff --git a/gobject/.cvsignore b/gobject/.cvsignore index f8d6d1d1..2654bd94 100644 --- a/gobject/.cvsignore +++ b/gobject/.cvsignore @@ -17,6 +17,7 @@ _libs .libs libgobject-1.3.la gobject-query +gobjectalias.h gobject.rc glib-genmarshal glib-mkenums diff --git a/gobject/ChangeLog b/gobject/ChangeLog index 3b9e5929..9ef951a2 100644 --- a/gobject/ChangeLog +++ b/gobject/ChangeLog @@ -1,3 +1,8 @@ +Thu Sep 16 18:42:46 2004 Manish Singh + + * abicheck.sh: don't hardcode lengths for cut, instead split on + the third field. + 2004-09-16 Matthias Clasen Implement the same PLT reduction technique used in GTK+: diff --git a/gobject/abicheck.sh b/gobject/abicheck.sh index 9d497329..64e39736 100755 --- a/gobject/abicheck.sh +++ b/gobject/abicheck.sh @@ -1,5 +1,5 @@ #! /bin/sh cpp -P -DG_OS_UNIX -DINCLUDE_INTERNAL_SYMBOLS ${srcdir:-.}/gobject.symbols | sed -e '/^$/d' | sort > expected-abi -nm -D .libs/libgobject-2.0.so | grep " T " | cut -c12- | sort > actual-abi +nm -D .libs/libgobject-2.0.so | grep " T " | cut -d ' ' -f 3 | sort > actual-abi diff -u expected-abi actual-abi && rm expected-abi actual-abi