]> git.ipfire.org Git - pakfire.git/commitdiff
configure: Fix syntax error in Python module check
authorMichael Tremer <michael.tremer@ipfire.org>
Sun, 11 Jul 2021 13:39:16 +0000 (14:39 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Sun, 11 Jul 2021 13:39:16 +0000 (14:39 +0100)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
configure.ac

index c5d14bca4c95b130a2f671c505bc504ea1f8e06e..e96de6451ea37c2ba07a2d33f11f8bbcb20fbe9e 100644 (file)
@@ -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])