From 7f6f50411cdaaa3407b6ca6c82e19cfa6b1b57a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20B=C3=A9raud?= <adrien.beraud@savoirfairelinux.com> Date: Mon, 30 May 2022 10:06:02 -0400 Subject: [PATCH] autotools: fix check for CppUnit --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index a3dd8907..68c65322 100644 --- a/configure.ac +++ b/configure.ac @@ -129,8 +129,8 @@ AC_ARG_ENABLE([proxy_client], AS_HELP_STRING([--enable-proxy-client], [Enable pr AM_CONDITIONAL(ENABLE_PROXY_CLIENT, test x$proxy_client == xyes) AC_ARG_ENABLE([tests], AS_HELP_STRING([--enable-tests], [Enable tests]), build_tests=yes, build_tests=no) -AM_CONDITIONAL(ENABLE_TESTS, test x$build_tests == xyes) -AM_COND_IF([ENABLE_TESTS], [ +AM_CONDITIONAL(ENABLE_TESTS, test "x$build_tests" == xyes) +AS_IF([test "x$build_tests" == xyes], [ PKG_CHECK_MODULES([CppUnit], [cppunit >= 1.12]) ]) -- GitLab