[evolution/evolution-3-12] Bug 741034 - Use portable shell in configure.ac
- From: Milan Crha <mcrha src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution/evolution-3-12] Bug 741034 - Use portable shell in configure.ac
- Date: Mon, 5 Jan 2015 13:51:01 +0000 (UTC)
commit 17fcb048a10364bdf2f23bfcc6fbfd8ac1335bbe
Author: Alexander Tsoy <alexander tsoy me>
Date: Mon Jan 5 14:49:02 2015 +0100
Bug 741034 - Use portable shell in configure.ac
configure.ac | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index fd66a80..fc74da2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -981,7 +981,7 @@ msg_bogofilter="$enable_bogofilter"
if test "x$enable_bogofilter" = "xyes"; then
AC_ARG_VAR([BOGOFILTER], [Bogofilter spam filtering program])
AC_PATH_PROG([BOGOFILTER], [bogofilter])
- if test "x$BOGOFILTER" == "x"; then
+ if test "x$BOGOFILTER" = "x"; then
AC_MSG_ERROR([
Bogofilter spam filtering program not found.
@@ -1011,7 +1011,7 @@ msg_spamassassin="$enable_spamassassin"
if test "x$enable_spamassassin" = "xyes"; then
AC_ARG_VAR([SPAMASSASSIN], [SpamAssassin spam filtering program])
AC_PATH_PROG([SPAMASSASSIN], [spamassassin])
- if test "x$SPAMASSASSIN" == "x"; then
+ if test "x$SPAMASSASSIN" = "x"; then
AC_MSG_ERROR([
SpamAssassin spam filtering program not found.
@@ -1233,7 +1233,7 @@ msg_text_highlight="$enable_text_highlight"
if test "x$enable_text_highlight" = "xyes"; then
AC_ARG_VAR([HIGHLIGHT], [Source code highlighting utility])
AC_PATH_PROG([HIGHLIGHT], [highlight])
- if test "x$HIGHLIGHT" == "x"; then
+ if test "x$HIGHLIGHT" = "x"; then
AC_MSG_ERROR([
Highlight utility not found.
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]