summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2007-03-05 16:47:23 +0000
committerBastien Nocera <hadess@src.gnome.org>2007-03-05 16:47:23 +0000
commitda1af5a298c120ed49ed0e5fabc4a586e9bafadf (patch)
tree6467677964c5849f8ed3537591298d2f514605f9
parent090c588376b11f9de2b4756da31401f6d593289b (diff)
downloadtotem-da1af5a298c120ed49ed0e5fabc4a586e9bafadf.tar.gz
Patch from Damien Carbery <damien.carbery@sun.com> to not use the "-q"
2007-03-05 Bastien Nocera <hadess@hadess.net> * configure.in: Patch from Damien Carbery <damien.carbery@sun.com> to not use the "-q" grep option (Closes: #414961) svn path=/trunk/; revision=4090
-rw-r--r--ChangeLog5
-rw-r--r--configure.in2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 56fd8fdb1..c04e74681 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2007-03-05 Bastien Nocera <hadess@hadess.net>
+ * configure.in: Patch from Damien Carbery <damien.carbery@sun.com>
+ to not use the "-q" grep option (Closes: #414961)
+
+2007-03-05 Bastien Nocera <hadess@hadess.net>
+
* src/backend/bacon-resize.c: (bacon_resize_init):
Hopefully fix crashes on startup when XRandR isn't supported,
by checking the retval of the Extension query functions
diff --git a/configure.in b/configure.in
index 6b5133975..228c87484 100644
--- a/configure.in
+++ b/configure.in
@@ -272,7 +272,7 @@ else
fi
AC_MSG_CHECKING([whether iso-codes has iso-639 domain])
-if $PKG_CONFIG --variable=domains iso-codes | grep -q 639 ; then
+if $PKG_CONFIG --variable=domains iso-codes | grep 639 >/dev/null ; then
AC_MSG_RESULT([yes])
else
AC_MSG_RESULT([no])