From: Michael Tremer Date: Fri, 21 Jun 2019 05:30:44 +0000 (+0100) Subject: configure: Break when asciidoc cannot be found X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=9665b7963d263fd83ac132a84a3809fc6a03287a;p=network.git configure: Break when asciidoc cannot be found Signed-off-by: Michael Tremer --- diff --git a/configure.ac b/configure.ac index 117850f0..340cfd60 100644 --- a/configure.ac +++ b/configure.ac @@ -144,6 +144,9 @@ PKG_CHECK_MODULES([LIBNL], [libnl-3.0 libnl-genl-3.0]) # ------------------------------------------------------------------------------ AC_CHECK_PROGS(ASCIIDOC, [asciidoc]) +if test -z "${ASCIIDOC}"; then + AC_MSG_ERROR([Required program 'asciidoc' not found]) +fi # ------------------------------------------------------------------------------