From 69583191de3196080fcd5b9292dd1edf90154dc8 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Thu, 3 Oct 2019 09:46:53 +0200 Subject: [PATCH] build: Don't create manual pages if rst2man is not found --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index d6044828..d2b95eb4 100644 --- a/configure.ac +++ b/configure.ac @@ -194,6 +194,7 @@ if (test "${enable_manual_pages}" != "no"); then AC_CHECK_PROGS(RST2MAN, [rst2man rst2man-3 rst2man.py], "no") if (test "x$RST2MAN" = "xno"); then AC_MSG_WARN([rst2man required for building manual pages]) + enable_manual_pages="no" fi fi AM_CONDITIONAL(MANUAL_PAGES, test "${enable_manual_pages}" != "no")