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.0.5-rc2~1^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F5345%2Fhead;p=thirdparty%2Fpdns.git corrects syntax error in test statement on existance of libcrypto_ecdsa (cherry picked from commit 8189c881e5ebaa13f5f14d9345335d656bd34e43) --- diff --git a/configure.ac b/configure.ac index 060ef6000c..e9922021ed 100644 --- a/configure.ac +++ b/configure.ac @@ -354,7 +354,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])] )