diff options
author | Mengjie Yu <meng-jie.yu@sun.com> | 2005-09-08 18:07:12 +0800 |
---|---|---|
committer | Harry Lu <haip@src.gnome.org> | 2005-09-08 18:07:12 +0800 |
commit | fb0375e2f95043a846c9b3e05cdc5be3944dd1d1 (patch) | |
tree | fb60a646979dbefae6a8544504c62db3f6a73611 /configure.in | |
parent | 6b4d7300bf9a802be666502a939438605e0b6cc1 (diff) | |
download | gsoc2013-evolution-fb0375e2f95043a846c9b3e05cdc5be3944dd1d1.tar.gz gsoc2013-evolution-fb0375e2f95043a846c9b3e05cdc5be3944dd1d1.tar.zst gsoc2013-evolution-fb0375e2f95043a846c9b3e05cdc5be3944dd1d1.zip |
grep on Solaris doesn't support -q, use > /dev/null instead.
2005-09-05 Mengjie Yu <meng-jie.yu@sun.com>
* configure.in:grep on Solaris doesn't support -q, use > /dev/null instead.
svn path=/trunk/; revision=30339
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 3ef731015a..5d422ed96c 100644 --- a/configure.in +++ b/configure.in @@ -1458,7 +1458,7 @@ AC_SUBST(plugins_base) AC_SUBST(plugins_standard) AC_SUBST(plugins_experimental) -if echo ${plugins_enabled} | grep -q "audio-inline" +if echo ${plugins_enabled} | grep "audio-inline" > /dev/null then if ${PKG_CONFIG} --exists gstreamer-0.8 then @@ -1475,7 +1475,7 @@ then fi fi -if echo ${plugins_enabled} | grep -q "new-mail-notify" ; then +if echo ${plugins_enabled} | grep "new-mail-notify" > /dev/null ; then if ${PKG_CONFIG} --exists dbus-glib-1 ; then dnl ************************************************** dnl * New Mail Notify plugin @@ -1495,7 +1495,7 @@ if echo ${plugins_enabled} | grep -q "new-mail-notify" ; then fi fi -if echo ${plugins_enabled} | grep -q "exchange-operations" ; then +if echo ${plugins_enabled} | grep "exchange-operations" > /dev/null ; then if ${PKG_CONFIG} --exists libexchange-storage-$EDS_PACKAGE ; then dnl ************************************************** dnl * Exchange Operations plugin |