remove stray -V option to grep so it actually works.

2005-08-08  Manish Singh  <yosh@gimp.org>

        * glib/abicheck.sh: remove stray -V option to grep so it actually
        works.
This commit is contained in:
Manish Singh 2005-08-09 00:25:18 +00:00 committed by Manish Singh
parent 717f3d4abb
commit 6c538d33ee
5 changed files with 21 additions and 1 deletions

View 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.

View 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.

View 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.

View 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.

View File

@ -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