From 094f3fdcc0ac57c9feee8a1a3f458ab27f5f593f Mon Sep 17 00:00:00 2001 From: Szymon Janc Date: Wed, 14 Feb 2024 16:36:34 +0100 Subject: [PATCH] build: Fix typo in external-plugins configure option This was causing build errors as macros were also generated with typo. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 05c76dddb..70e9d4be8 100644 --- a/configure.ac +++ b/configure.ac @@ -364,7 +364,7 @@ AC_ARG_ENABLE(deprecated, AS_HELP_STRING([--enable-deprecated], [enable_deprecated=${enableval}]) AM_CONDITIONAL(DEPRECATED, test "${enable_deprecated}" = "yes") -AC_ARG_ENABLE(external-plugsin, AS_HELP_STRING([--enable-external-plugins], +AC_ARG_ENABLE(external-plugins, AS_HELP_STRING([--enable-external-plugins], [enable support for external plugins]), [enable_external_plugins=${enableval}]) AM_CONDITIONAL(EXTERNAL_PLUGINS, test "${enable_external_plugins}" = "yes") -- 2.47.3