From f9dcab956ef90f8cbf3b724e2755ac721bb333f0 Mon Sep 17 00:00:00 2001 From: John Safranek Date: Thu, 18 May 2023 10:51:04 -0700 Subject: [PATCH] Configure Typo 1. The description text for the brainpool enable option in configure was using a shell variable that ended up in the output. Switched to the description pattern used in other options. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 08e32a07a..7102fa58c 100644 --- a/configure.ac +++ b/configure.ac @@ -3234,7 +3234,7 @@ else fi AC_ARG_ENABLE([brainpool], - [AS_HELP_STRING([--enable-brainpool],[Enable Brainpool ECC curves (default: ${BRAINPOOL_DEFAULT})])], + [AS_HELP_STRING([--enable-brainpool],[Enable Brainpool ECC curves (default: enabled with ECC custom curves)])], [ ENABLED_BRAINPOOL=$enableval ], [ ENABLED_BRAINPOOL="$BRAINPOOL_DEFAULT" ] )