]> git.meshlink.io Git - catta/commitdiff
* Move some of the man page checks around to catch more situations
authorTrent Lloyd <lathiat@bur.st>
Wed, 19 Oct 2005 21:55:41 +0000 (21:55 +0000)
committerTrent Lloyd <lathiat@bur.st>
Wed, 19 Oct 2005 21:55:41 +0000 (21:55 +0000)
 * Fix the man dir harder

git-svn-id: file:///home/lennart/svn/public/avahi/trunk@828 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe

configure.ac
man/Makefile.am

index bf8f316c86ae8a9fb94d45d915fa0209cdece649..17f2f94c04cd5c537d44c3cb1b2d2323815f4d80 100644 (file)
@@ -584,15 +584,15 @@ if test x$manpages = xyes ; then
     
     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
+
+    if test x$have_xmltoman = xno -o x$xmltoman = xno; then
+        if ! test -e man/avahi-daemon.8 ; then
+            AC_MSG_ERROR([*** xmltoman was not found or was disabled, it is required to build the manpages as they have not been pre-built, install xmltoman, pass --disable-manpages or dont pass --disable-xmltoman])
+            exit 1
         fi
+        AC_MSG_WARN([*** Not rebuilding man pages as xmltoman is not found ***])
+        xmltoman=no
     fi
 fi
 AM_CONDITIONAL([USE_XMLTOMAN], [test "x$xmltoman" = xyes])
index c2bd84865ee3cf446db0689f502befca6ce6364b..d80c88573f57d581ba260f6477dadd85a011566f 100644 (file)
 pkgsysconfdir=$(sysconfdir)/avahi
 servicedir=$(pkgsysconfdir)/services
 
+if BUILD_MANPAGES
+
+man_MANS = \
+       avahi-daemon.8 \
+       avahi-dnsconfd.8 \
+       avahi-daemon.conf.5 \
+       avahi-dnsconfd.action.8 \
+       avahi.service.5
+
 noinst_DATA = \
        avahi-browse.1.xml \
        avahi-publish-service.1.xml \
@@ -37,15 +46,6 @@ noinst_DATA = \
 CLEANFILES = \
        $(noinst_DATA)
 
-if BUILD_MANPAGES
-
-man_MANS = \
-       avahi-daemon.8 \
-       avahi-dnsconfd.8 \
-       avahi-daemon.conf.5 \
-       avahi-dnsconfd.action.8 \
-       avahi.service.5
-
 if HAVE_PYTHON
 if HAVE_DBUS