From 270f6c80dba8b4382543e9eb7aad8cf42c67f961 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Mon, 26 Feb 2018 02:22:11 +0100 Subject: [PATCH] Portability fix for the configure scripts generated Found thanks to the developer checks from the pkgsrc software distribution (for NetBSD, SmartOS, Minix, MacOS X, Linux, and more). --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 68c45a56f0aa0..f5d236023858b 100644 --- a/configure.ac +++ b/configure.ac @@ -482,7 +482,7 @@ AM_CONDITIONAL([USE_BENCHMARK], [test x"$use_benchmark" = x"yes"]) AM_CONDITIONAL([USE_ECMULT_STATIC_PRECOMPUTATION], [test x"$set_precomp" = x"yes"]) AM_CONDITIONAL([ENABLE_MODULE_ECDH], [test x"$enable_module_ecdh" = x"yes"]) AM_CONDITIONAL([ENABLE_MODULE_RECOVERY], [test x"$enable_module_recovery" = x"yes"]) -AM_CONDITIONAL([USE_JNI], [test x"$use_jni" == x"yes"]) +AM_CONDITIONAL([USE_JNI], [test x"$use_jni" = x"yes"]) AM_CONDITIONAL([USE_EXTERNAL_ASM], [test x"$use_external_asm" = x"yes"]) AM_CONDITIONAL([USE_ASM_ARM], [test x"$set_asm" = x"arm"])