Commit 57148b1f authored by Martin Lucina's avatar Martin Lucina

Add missing check for install_man=yes

Fixes git builds w/o asciidoc, bug introduced in 46824abe
parent 8b86dcf8
......@@ -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])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment