filter G_GNUC before PRIVATE so $ is still true.
authorManish Singh <yosh@gimp.org>
Sun, 28 Nov 2004 21:22:05 +0000 (21:22 +0000)
committerManish Singh <yosh@src.gnome.org>
Sun, 28 Nov 2004 21:22:05 +0000 (21:22 +0000)
Sun Nov 28 13:21:12 2004  Manish Singh  <yosh@gimp.org>

        * abicheck.sh: filter G_GNUC before PRIVATE so $ is still true.

gobject/ChangeLog
gobject/abicheck.sh

index c094477..7609bf8 100644 (file)
@@ -1,3 +1,7 @@
+Sun Nov 28 13:21:12 2004  Manish Singh  <yosh@gimp.org>
+
+       * abicheck.sh: filter G_GNUC before PRIVATE so $ is still true.
+
 Sun Nov 28 01:37:54 2004    <timj@birnet.org>
 
        * gsignal.c: applied patch by sven@gimp.org (#153727) to reduce
index f4ea457..3875e7f 100755 (executable)
@@ -1,5 +1,5 @@
 #! /bin/sh
 
-cpp -P -DG_OS_UNIX ${srcdir:-.}/gobject.symbols | sed -e '/^$/d' -e 's/ PRIVATE$//' -e 's/ G_GNUC.*$//' | sort > expected-abi
+cpp -P -DG_OS_UNIX ${srcdir:-.}/gobject.symbols | sed -e '/^$/d' -e 's/ G_GNUC.*$//' -e 's/ PRIVATE$//' | sort > expected-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