summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorJuergen Daubert <jue@jue.li>2015-11-30 20:55:07 +0800
committerJuergen Daubert <jue@jue.li>2015-11-30 20:55:07 +0800
commitb161d17e177d5d669e808bf963f7aa7a39d4d475 (patch)
tree5b875d19e75bd58c5da6694e18bad45dd3746434 /configure.ac
parent712b6275f94ac5d7495c91b074ed64a54578d4ca (diff)
downloaddropbear-b161d17e177d5d669e808bf963f7aa7a39d4d475.tar.gz
The '==' comparision operator is not defined by POSIX, use '=' instead
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index e2219d4..9fd8ef2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -92,7 +92,7 @@ AC_CHECK_LIB(crypt, crypt,
found_crypt_func=here
])
AC_SUBST(CRYPTLIB)
-if test "t$found_crypt_func" == there; then
+if test "t$found_crypt_func" = there; then
AC_DEFINE(HAVE_CRYPT, 1, [crypt() function])
fi