diff options
author | Juergen Daubert <jue@jue.li> | 2015-11-30 20:55:07 +0800 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2015-11-30 20:55:07 +0800 |
commit | f299caf6127e1c6da7695d9d8f67d6158cbcbcb0 (patch) | |
tree | 479e89580fe11d558d6ea71715da2b207358b42c /configure.ac | |
parent | a3049d6433ec461113c60181014caa8f7a532db4 (diff) |
The '==' comparision operator is not defined by POSIX, use '=' instead
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
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 |