From d7a6940827e1449fbf4531081384c28e46d8efd1 Mon Sep 17 00:00:00 2001 From: Trent Lloyd Date: Tue, 23 Aug 2005 09:14:07 +0000 Subject: * Check if the manpages have been generated, if not error about missing xmltoman rather than warning git-svn-id: file:///home/lennart/svn/public/avahi/trunk@410 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe --- configure.ac | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure.ac b/configure.ac index 14b816b..4dac566 100644 --- a/configure.ac +++ b/configure.ac @@ -326,6 +326,10 @@ if test x$xmltoman = xyes ; then AC_CHECK_PROG(have_xmltoman, xmltoman, yes, no) if test x$have_xmltoman = xno ; then + if ! test -e man/avahi-daemon.8 ; then + AC_MSG_ERROR([*** xmltoman was not found, it is required to build the manpages and they have not been pre-built]) + exit 1 + fi AC_MSG_WARN([*** Not rebuilding man pages as xmltoman is not found ***]) xmltoman=no fi -- cgit