From d13e08bd85b1b7ef7cb3ac65515e7c489079ea7d Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Mon, 21 Dec 2020 19:32:35 +0100 Subject: [PATCH] Fix configure for flat training build without asciidoc Signed-off-by: Stefan Weil --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 22397691..d67d808a 100644 --- a/configure.ac +++ b/configure.ac @@ -430,11 +430,11 @@ AC_SEARCH_LIBS([pthread_create], [pthread]) AC_CHECK_PROG([have_asciidoc], asciidoc, true, false) AC_CHECK_PROG([have_xsltproc], xsltproc, true, false) +# MacOS with Homebrew requires the environment variable +# XML_CATALOG_FILES for xsltproc. +AM_CONDITIONAL([HAVE_XML_CATALOG_FILES], false) if $have_asciidoc && $have_xsltproc; then AM_CONDITIONAL([ASCIIDOC], true) - # MacOS with Homebrew requires the environment variable - # XML_CATALOG_FILES for xsltproc. - AM_CONDITIONAL([HAVE_XML_CATALOG_FILES], false) XML_CATALOG_FILES= AC_CHECK_PROG([have_brew], brew, true, false) if $have_brew; then