summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManish Singh <yosh@gimp.org>2005-08-09 00:25:18 +0000
committerManish Singh <yosh@src.gnome.org>2005-08-09 00:25:18 +0000
commit6c538d33ee948300fc1e9105169547b92ecac4ae (patch)
tree756a2c3249f74574eb435a5ea83e47b0df4e8de8
parent717f3d4abbe99467f07b05462d7651b08e69dd20 (diff)
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.
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.pre-2-105
-rw-r--r--ChangeLog.pre-2-125
-rw-r--r--ChangeLog.pre-2-85
-rwxr-xr-xglib/abicheck.sh2
5 files changed, 21 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4b405fa19..9e5efd1d7 100644
--- 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.
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index 4b405fa19..9e5efd1d7 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -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.
diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12
index 4b405fa19..9e5efd1d7 100644
--- a/ChangeLog.pre-2-12
+++ b/ChangeLog.pre-2-12
@@ -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.
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index 4b405fa19..9e5efd1d7 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -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.
diff --git a/glib/abicheck.sh b/glib/abicheck.sh
index 832c5256d..9f5221801 100755
--- a/glib/abicheck.sh
+++ b/glib/abicheck.sh
@@ -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