From f42f138f7816e7233898242361c52f900bd75cad Mon Sep 17 00:00:00 2001 From: Hans Ulrich Niedermann Date: Mon, 11 Feb 2008 09:55:18 +0100 Subject: [PATCH] More verbose warnings if doc tools not present Signed-off-by: Julien Danjou --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 8500b44b..36b352ec 100644 --- a/configure.ac +++ b/configure.ac @@ -46,9 +46,9 @@ test "x$ASCIIDOC" = "x" && AC_PATH_PROG([ASCIIDOC], [asciidoc], [:]) test "x$XMLTO" = "x" && AC_PATH_PROG([XMLTO], [xmlto], [:]) test "x$DOXYGEN" = "x" && AC_PATH_PROG([DOXYGEN], [doxygen], [:]) -test "x$ASCIIDOC" = "x:" && AC_MSG_WARN([awesome requires asciidoc]) -test "x$XMLTO" = "x:" && AC_MSG_WARN([awesome requires xmlto]) -test "x$DOXYGEN" = "x:" && AC_MSG_WARN([awesome requires doxygen]) +test "x$ASCIIDOC" = "x:" && AC_MSG_WARN([awesome man page generation requires asciidoc]) +test "x$XMLTO" = "x:" && AC_MSG_WARN([awesome man page generation requires xmlto]) +test "x$DOXYGEN" = "x:" && AC_MSG_WARN([awesome developer doc generation requires doxygen]) AM_CONDITIONAL([HAVE_ASCIIDOC], [test "x$ASCIIDOC" != "x:"]) AM_CONDITIONAL([HAVE_XMLTO], [test "x$XMLTO" != "x:"])