* src/configure: Removed '==' bashism (thanks to Magnus Henoch)

* src/aclocal.m4: Likewise

SVN Revision: 543
This commit is contained in:
Alexey Shchepin 2006-04-23 15:35:14 +00:00
parent 25ca5013bb
commit 1694a6a756
3 changed files with 5 additions and 2 deletions

View File

@ -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)

2
src/aclocal.m4 vendored
View File

@ -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

2
src/configure vendored
View File

@ -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; }; }