From 94239f92425ff037697dfc81301d61d09be29f5c Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Wed, 26 Jan 2022 16:15:17 +0100 Subject: [PATCH] configure.ac: fixed wrong keyword + default val --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index e08c2f6a4..96fdcd193 100644 --- a/configure.ac +++ b/configure.ac @@ -3382,8 +3382,8 @@ fi # --------------------------------------------------------------------- # Tests # --------------------------------------------------------------------- -AC_ARG_ENABLE(plugins, AS_HELP_STRING([--disable-cppunit], [disable cppunit tests (default is auto)]), - [cppunit_req=$enableval]) +AC_ARG_ENABLE(cppunit, AS_HELP_STRING([--disable-cppunit], [disable cppunit tests (default is auto)]), + [cppunit_req=$enableval], [cppunit_req=$build_default]) PKG_CHECK_MODULES([CPPUNIT], [cppunit], [cppunit=yes], [cppunit=no]) if test "$cppunit" = yes; then