From 0eb7fe0c5e11f8584cd4c4d65662b2fc6cd511d9 Mon Sep 17 00:00:00 2001 From: Willem Toorop Date: Wed, 10 Jul 2019 16:19:57 +0200 Subject: [PATCH] typo --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index ee7ec498..f405f800 100644 --- a/configure.ac +++ b/configure.ac @@ -519,7 +519,7 @@ case "$enable_ed25519" in *) dnl default AC_CHECK_DECLS([NID_ED25519], [ AC_DEFINE_UNQUOTED([USE_ED25519], [1], [Define this to enable ED25519 support.]) - ], [if test "x$enable_ed25519" "xyes"; then AC_MSG_ERROR([OpenSSL does not support ED25519 and you used --enable-ed25519.]) + ], [if test "x$enable_ed25519" = "xyes"; then AC_MSG_ERROR([OpenSSL does not support ED25519 and you used --enable-ed25519.]) fi ], [AC_INCLUDES_DEFAULT #include ]) @@ -532,7 +532,7 @@ case "$enable_ed448" in *) dnl default AC_CHECK_DECLS([NID_ED448], [ AC_DEFINE_UNQUOTED([USE_ED448], [1], [Define this to enable ED448 support.]) - ], [if test "x$enable_ed448" "xyes"; then AC_MSG_ERROR([OpenSSL does not support ED448 and you used --enable-ed448.]) + ], [if test "x$enable_ed448" = "xyes"; then AC_MSG_ERROR([OpenSSL does not support ED448 and you used --enable-ed448.]) fi ], [AC_INCLUDES_DEFAULT #include ]) -- 2.47.3