Skip to content

Commit

Permalink
configure.ac: improve the ERROR message if a2x is missed
Browse files Browse the repository at this point in the history
Giving the user a better hint if the a2x check isn't succesfull.
  • Loading branch information
tijuca authored and obgm committed Oct 26, 2016
1 parent 87e30a4 commit de80514
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -258,7 +258,7 @@ if test "x$build_examples" = "xyes" -a "x$build_documentation" = "xyes"; then
AC_PATH_PROG([A2X], [a2x])
if test "x$A2X" = "x"; then
AC_MSG_WARN([==> You want to build the examples binaries, that is also including the respective manpages but a2x was not found!])
AC_MSG_ERROR([==> Install the package that contains the a2x binary or disable the build of the examples using --disable-examples.])
AC_MSG_ERROR([==> Install the package containg a2x (mostly asciidoc) or disable the build of the examples using --disable-examples.])
fi
build_examples="yes"
fi
Expand Down

0 comments on commit de80514

Please sign in to comment.