mirror of
https://github.com/clearml/dropbear
synced 2025-02-07 05:17:28 +00:00
The '==' comparision operator is not defined by POSIX, use '=' instead
This commit is contained in:
parent
a3049d6433
commit
f299caf612
@ -92,7 +92,7 @@ AC_CHECK_LIB(crypt, crypt,
|
|||||||
found_crypt_func=here
|
found_crypt_func=here
|
||||||
])
|
])
|
||||||
AC_SUBST(CRYPTLIB)
|
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])
|
AC_DEFINE(HAVE_CRYPT, 1, [crypt() function])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user