From 172c2a39d295a60f743a09577186caf88dd912c1 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Thu, 28 May 2026 12:14:39 +0200 Subject: [PATCH] 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") --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 370bad009..971e3c564 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