summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTrent Lloyd <lathiat@bur.st>2005-08-23 09:14:07 +0000
committerTrent Lloyd <lathiat@bur.st>2005-08-23 09:14:07 +0000
commitd7a6940827e1449fbf4531081384c28e46d8efd1 (patch)
tree2005faab604765d5eccf6cf5ec711282859c4606
parentbe42fd38c9f64c3d692883d951474527feef52f2 (diff)
* 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
-rw-r--r--configure.ac4
1 files changed, 4 insertions, 0 deletions
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