From 4b9d89d387cb5f695aaf91116dd65f81a2ec3603 Mon Sep 17 00:00:00 2001 From: David Garske Date: Wed, 24 Jul 2024 09:10:25 -0700 Subject: [PATCH] Fix autoconf issue with `==` --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 222fcd620..457843860 100644 --- a/configure.ac +++ b/configure.ac @@ -4762,7 +4762,7 @@ else fi if test "$ENABLED_ASN" = "yes"; then AM_CFLAGS="$AM_CFLAGS -DWOLFSSL_ASN_TEMPLATE" - elif test "$ENABLED_ASN" == "original"; then + elif test "$ENABLED_ASN" = "original"; then AM_CFLAGS="$AM_CFLAGS -DWOLFSSL_ASN_ORIGINAL" else AC_MSG_ERROR([Invalid asn option. Valid are: template or original. Seen: $ENABLED_ASN.])