autotools, docs: Adjust help string for `--enable-coverage` option
What changed, and why it matters
This commit only rewords the help text shown when a developer runs ./configure --help. It changes the description of the --enable-coverage option from mentioning 'kcov' to a more generic phrase. There is no code, build logic, or security change.
No action needed; this is a documentation-only change with no security relevance.
Security signals we found
No strong security signals were identified.
Evidence from the diff
A single-line edit in configure.ac updates the AS_HELP_STRING description for –enable-coverage. The default value, the macro behavior, compiler flags, and all other build configuration remain identical. No functional or security-relevant change is present.
Changed components
configure.ac help string onlyInspect captured patch +1 / −1
diff --git a/configure.ac b/configure.ac
index ce24248..2f156dd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -144,7 +144,7 @@ AC_ARG_ENABLE(benchmark,
[SECP_SET_DEFAULT([enable_benchmark], [yes], [yes])])
AC_ARG_ENABLE(coverage,
- AS_HELP_STRING([--enable-coverage],[enable compiler flags to support kcov coverage analysis [default=no]]), [],
+ AS_HELP_STRING([--enable-coverage],[enable coverage analysis support [default=no]]), [],
[SECP_SET_DEFAULT([enable_coverage], [no], [no])])
AC_ARG_ENABLE(tests,
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.