Skip to content

Commit 8d682c8

Browse files
committed
Ensure asciidoc is installed when building docs
1 parent b62c902 commit 8d682c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,10 @@ AS_IF([test "$enable_documentation" = "yes"],
109109
[AC_PATH_PROG(A2X, a2x, :)
110110
AC_PATH_PROG(ASCIIDOC, asciidoc, :)
111111
AS_IF([test "$A2X" = :],
112-
[AC_MSG_WARN([Could not find a2x.])]
112+
[AC_MSG_ERROR([Could not find a2x. Please install asciidoc.])]
113113
)
114114
AS_IF([test "$ASCIIDOC" = :],
115-
[AC_MSG_WARN([Could not find asciidoc.])]
115+
[AC_MSG_ERROR([Could not find asciidoc. Please install asciidoc.])]
116116
)]
117117
)
118118

0 commit comments

Comments
 (0)