summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorMartin Lucina <mato@kotelna.sk>2010-02-22 16:42:13 +0100
committerMartin Lucina <mato@kotelna.sk>2010-02-22 16:42:13 +0100
commit3a69cca386a895313729f418ee44443794feed0f (patch)
treebf7f5c2a085b0608401bdb7da570d9ccfabb0b2f /configure.in
parent1294c1d33a1c73218eb94bf18ceb9ae873d08891 (diff)
Fix $build_doc/$install_man check yet again
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 4268809..2420fa6 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 "x$install_man" = "xyes" -a ! -f "./doc/zmq.7"; then
+if test "x$build_doc" = "xno" -a "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])