From 8d682c8ded09a30eb124eabc17e58694020c7825 Mon Sep 17 00:00:00 2001 From: Pete Moore Date: Wed, 4 Dec 2024 11:00:19 +0100 Subject: [PATCH] Ensure asciidoc is installed when building docs --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 0628cc5..f51c238 100644 --- a/configure.ac +++ b/configure.ac @@ -109,10 +109,10 @@ AS_IF([test "$enable_documentation" = "yes"], [AC_PATH_PROG(A2X, a2x, :) AC_PATH_PROG(ASCIIDOC, asciidoc, :) AS_IF([test "$A2X" = :], - [AC_MSG_WARN([Could not find a2x.])] + [AC_MSG_ERROR([Could not find a2x. Please install asciidoc.])] ) AS_IF([test "$ASCIIDOC" = :], - [AC_MSG_WARN([Could not find asciidoc.])] + [AC_MSG_ERROR([Could not find asciidoc. Please install asciidoc.])] )] )