From: Shin Sterneck Date: Tue, 23 May 2017 00:12:26 +0000 (+0900) Subject: corrects syntax error in test statement on existance of libcrypto_ecdsa X-Git-Tag: rec-4.1.0-alpha1~109^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F5335%2Fhead;p=thirdparty%2Fpdns.git corrects syntax error in test statement on existance of libcrypto_ecdsa --- diff --git a/configure.ac b/configure.ac index 2151103eba..5d228ed391 100644 --- a/configure.ac +++ b/configure.ac @@ -344,7 +344,7 @@ AC_MSG_NOTICE([----------------]) AC_MSG_NOTICE([Built-in modules: $modules]) AC_MSG_NOTICE([Dynamic modules: $dynmodules]) AC_MSG_NOTICE([]) -AS_IF([test "x$libcrypto_ecdsa" == "xyes"], +AS_IF([test "x$libcrypto_ecdsa" = "xyes"], [AC_MSG_NOTICE([OpenSSL ecdsa: yes])], [AC_MSG_NOTICE([OpenSSL ecdsa: no])] )