From: Michael Tremer Date: Sun, 11 Jul 2021 13:39:16 +0000 (+0100) Subject: configure: Fix syntax error in Python module check X-Git-Tag: 0.9.28~1055 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=09ccdffa7744cf8fb6c7dd0037031f37ce08444f;p=pakfire.git configure: Fix syntax error in Python module check Signed-off-by: Michael Tremer --- diff --git a/configure.ac b/configure.ac index c5d14bca4..e96de6451 100644 --- a/configure.ac +++ b/configure.ac @@ -211,10 +211,8 @@ AC_CHECK_FUNCS([ \ # Python Stuff AM_PATH_PYTHON([3.6]) -AX_PYTHON_MODULE([systemd], - [AC_MSG_ERROR([*** systemd Python module not found])]) -AX_PYTHON_MODULE([tornado], - [AC_MSG_ERROR([*** tornado Python module not found])]) +AX_PYTHON_MODULE([systemd], [fatal]) +AX_PYTHON_MODULE([tornado], [fatal]) # Libraries we depend on PKG_CHECK_MODULES([ARCHIVE], [libarchive >= 3.3.3])