changeset 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 af940cefdba1
children 8a5e9a97bd7a
files configure.ac
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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