From 0c43eb3fe47f1945059f9f8081fc44bde633d37f Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Wed, 8 Jan 2020 17:05:02 +0100 Subject: [PATCH] m4: fix output of sphinx-build version check --- m4/ax_prog_sphinx_build.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/m4/ax_prog_sphinx_build.m4 b/m4/ax_prog_sphinx_build.m4 index 653c7bce..ff64650b 100644 --- a/m4/ax_prog_sphinx_build.m4 +++ b/m4/ax_prog_sphinx_build.m4 @@ -19,7 +19,7 @@ # and this notice are preserved. This file is offered as-is, without any # warranty. -#serial 5 +#serial 6 AC_DEFUN([AX_PROG_SPHINX_BUILD], [AX_WITH_PROG([SPHINXBUILD],[sphinx-build],[:]) @@ -33,12 +33,12 @@ AC_DEFUN([AX_PROG_SPHINX_BUILD], [junk=`$SPHINXBUILD &> version_file` ax_sphinx_build_version=`head -1 version_file` rm version_file - AC_MSG_RESULT([$SPHINXBUILD is version "$ax_sphinx_build_version"]) $SPHINXBUILD -Q -C -b man -d conftest.d . . >/dev/null 2>&1 AS_IF([test $? -eq 0], ,[SPHINXBUILD=]) rm -rf conftest.d ]) ]) rm -f version_file + AC_MSG_RESULT(["$ax_sphinx_build_version"]) ]) AS_IF([test -n "${SPHINXBUILD}"], -- 2.30.2