From 57148b1fdeec0080b77ecfa837add9557226261c Mon Sep 17 00:00:00 2001 From: Martin Lucina Date: Fri, 19 Feb 2010 18:23:54 +0100 Subject: Add missing check for install_man=yes Fixes git builds w/o asciidoc, bug introduced in 46824abe --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 30283ef..f182281 100644 --- a/configure.in +++ b/configure.in @@ -101,7 +101,7 @@ fi AC_MSG_CHECKING([whether to build documentation]) AC_MSG_RESULT([$build_doc]) AC_MSG_CHECKING([whether to install manpages]) -if test ! -f "./doc/zmq.7"; then +if test "x$install_man" = "xyes" -a ! -f "./doc/zmq.7"; then AC_MSG_ERROR([configure thinks we want to install manpages but they're not present. Help!]) fi AC_MSG_RESULT([$install_man]) -- cgit v1.2.3