diff options
author | Alexey Shchepin <alexey@process-one.net> | 2006-04-23 15:35:14 +0000 |
---|---|---|
committer | Alexey Shchepin <alexey@process-one.net> | 2006-04-23 15:35:14 +0000 |
commit | 1694a6a7561f6463b3f3a3202d90b60c67107294 (patch) | |
tree | afd8e70bc0a67645968cec4749be8c571625360d | |
parent | * src/ejabberd_c2s.erl: Resend messages when leaving negative (diff) |
* src/configure: Removed '==' bashism (thanks to Magnus Henoch)
* src/aclocal.m4: Likewise
SVN Revision: 543
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | src/aclocal.m4 | 2 | ||||
-rwxr-xr-x | src/configure | 2 |
3 files changed, 5 insertions, 2 deletions
@@ -1,5 +1,8 @@ 2006-04-23 Alexey Shchepin <alexey@sevcom.net> + * src/configure: Removed '==' bashism (thanks to Magnus Henoch) + * src/aclocal.m4: Likewise + * src/ejabberd_c2s.erl: Resend messages when leaving negative presence state (thanks to Magnus Henoch) diff --git a/src/aclocal.m4 b/src/aclocal.m4 index 362c70387..e24d334c7 100644 --- a/src/aclocal.m4 +++ b/src/aclocal.m4 @@ -68,7 +68,7 @@ AC_DEFUN(AM_WITH_ERLANG, AC_PATH_TOOL(ERLC, erlc, , $PATH:$with_erlang:$with_erlang/bin) AC_PATH_TOOL(ERL, erl, , $PATH:$with_erlang:$with_erlang/bin) - if test "z$ERLC" == "z" || test "z$ERL" == "z"; then + if test "z$ERLC" = "z" || test "z$ERL" = "z"; then AC_MSG_ERROR([erlang not found]) fi diff --git a/src/configure b/src/configure index 6165bb5d8..3468e35c9 100755 --- a/src/configure +++ b/src/configure @@ -2471,7 +2471,7 @@ else fi - if test "z$ERLC" == "z" || test "z$ERL" == "z"; then + if test "z$ERLC" = "z" || test "z$ERL" = "z"; then { { echo "$as_me:$LINENO: error: erlang not found" >&5 echo "$as_me: error: erlang not found" >&2;} { (exit 1); exit 1; }; } |