Skip to content

Commit 270f6c8

Browse files
committed
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).
1 parent cd329db commit 270f6c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ AM_CONDITIONAL([USE_BENCHMARK], [test x"$use_benchmark" = x"yes"])
482482
AM_CONDITIONAL([USE_ECMULT_STATIC_PRECOMPUTATION], [test x"$set_precomp" = x"yes"])
483483
AM_CONDITIONAL([ENABLE_MODULE_ECDH], [test x"$enable_module_ecdh" = x"yes"])
484484
AM_CONDITIONAL([ENABLE_MODULE_RECOVERY], [test x"$enable_module_recovery" = x"yes"])
485-
AM_CONDITIONAL([USE_JNI], [test x"$use_jni" == x"yes"])
485+
AM_CONDITIONAL([USE_JNI], [test x"$use_jni" = x"yes"])
486486
AM_CONDITIONAL([USE_EXTERNAL_ASM], [test x"$use_external_asm" = x"yes"])
487487
AM_CONDITIONAL([USE_ASM_ARM], [test x"$set_asm" = x"arm"])
488488

0 commit comments

Comments
 (0)