Commit 172c2a39d2 for strongswan.org
commit 172c2a39d295a60f743a09577186caf88dd912c1
Author: Tobias Brunner <tobias@strongswan.org>
Date: Thu May 28 12:14:39 2026 +0200
configure: Fix check for option that indicates if plugins are packaged separately
The option was renamed with 7f9f9bd375ab ("Fixed some typos, courtesy of
codespell"), the check was not.
Fixes: dd7b0283efcd ("plugin-loader: Add option to change log message if plugin is not found")
diff --git a/configure.ac b/configure.ac
index 370bad009f..971e3c5643 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1952,7 +1952,7 @@ fi
if test x$imc_swima = xtrue -o x$imv_swima = xtrue; then
AC_DEFINE([USE_JSON], [], [build code for JSON])
fi
-if test "x$plugins_packaged_seperately" != xno; then
+if test "x$plugins_packaged_separately" != xno; then
AC_DEFINE([PLUGINS_PACKAGED_SEPARATELY], [], [distribution ships plugins in multiple packages])
fi