remove stray -V option to grep so it actually works.
authorManish Singh <yosh@gimp.org>
Tue, 9 Aug 2005 00:25:18 +0000 (00:25 +0000)
committerManish Singh <yosh@src.gnome.org>
Tue, 9 Aug 2005 00:25:18 +0000 (00:25 +0000)
2005-08-08  Manish Singh  <yosh@gimp.org>

        * glib/abicheck.sh: remove stray -V option to grep so it actually
        works.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-8
glib/abicheck.sh

index 4b405fa..9e5efd1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-08-08  Manish Singh  <yosh@gimp.org>
+
+       * glib/abicheck.sh: remove stray -V option to grep so it actually
+       works.
+
 2005-08-08  Matthias Clasen  <mclasen@redhat.com>
 
        * tests/convert-test.c: Enable the endianness test.
index 4b405fa..9e5efd1 100644 (file)
@@ -1,3 +1,8 @@
+2005-08-08  Manish Singh  <yosh@gimp.org>
+
+       * glib/abicheck.sh: remove stray -V option to grep so it actually
+       works.
+
 2005-08-08  Matthias Clasen  <mclasen@redhat.com>
 
        * tests/convert-test.c: Enable the endianness test.
index 4b405fa..9e5efd1 100644 (file)
@@ -1,3 +1,8 @@
+2005-08-08  Manish Singh  <yosh@gimp.org>
+
+       * glib/abicheck.sh: remove stray -V option to grep so it actually
+       works.
+
 2005-08-08  Matthias Clasen  <mclasen@redhat.com>
 
        * tests/convert-test.c: Enable the endianness test.
index 4b405fa..9e5efd1 100644 (file)
@@ -1,3 +1,8 @@
+2005-08-08  Manish Singh  <yosh@gimp.org>
+
+       * glib/abicheck.sh: remove stray -V option to grep so it actually
+       works.
+
 2005-08-08  Matthias Clasen  <mclasen@redhat.com>
 
        * tests/convert-test.c: Enable the endianness test.
index 832c525..9f52218 100755 (executable)
@@ -8,6 +8,6 @@ INCLUDES="$INCLUDES -include glibconfig.cpp"
 cpp -P -DINCLUDE_INTERNAL_SYMBOLS -DINCLUDE_VARIABLES -DG_STDIO_NO_WRAP_ON_UNIX -DALL_FILES $INCLUDES "${srcdir:-.}/glib.symbols" | sed -e '/^$/d' -e 's/ G_GNUC.*$//' -e 's/ PRIVATE$//' | sort > expected-abi
 rm glibconfig.cpp
 
-nm -D .libs/libglib-2.0.so | grep -v " [BDTR] " | cut -d ' ' -f 3 | sort > actual-abi
+nm -D .libs/libglib-2.0.so | grep " [BDTR] " | cut -d ' ' -f 3 | sort > actual-abi
 
 diff -u expected-abi actual-abi && rm expected-abi actual-abi