diff configure.ac @ 1193:da1ed4fcdc4a

The '==' comparision operator is not defined by POSIX, use '=' instead
author Juergen Daubert <jue@jue.li>
date Mon, 30 Nov 2015 20:55:07 +0800
parents a4ce76e6fb63
children 94d4038bb34c
line wrap: on
line diff
--- a/configure.ac	Fri Nov 27 22:19:08 2015 +0800
+++ b/configure.ac	Mon Nov 30 20:55:07 2015 +0800
@@ -92,7 +92,7 @@
 	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