From ea0145104fb2fd5d97269859c3c97ed2863dffcb Mon Sep 17 00:00:00 2001 From: Andrei Pavel Date: Wed, 9 Jul 2025 22:00:32 +0300 Subject: [PATCH] [#3800] Fix sphinx+pdflatex check on Sphinx 8.1.3+ --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 21f1a2fe9b..acf25e6600 100644 --- a/configure.ac +++ b/configure.ac @@ -1347,11 +1347,11 @@ if test "x$enable_generate_docs" != xno ; then to=`mktemp -d` oldpath=`pwd` echo 'hello' > $ti/contents.rst - $SPHINXBUILD -b latex -C $ti $to > /dev/null 2>&1 + $SPHINXBUILD -b latex -D 'project=kea' -C $ti $to > /dev/null 2>&1 cd $to > /dev/null 2>&1 - $PDFLATEX -interaction nonstopmode [[pP]]ython.tex > /dev/null 2>&1 + $PDFLATEX -interaction nonstopmode kea.tex > /dev/null 2>&1 cd $oldpath > /dev/null 2>&1 - file $to/[[pP]]ython.pdf | grep PDF > /dev/null 2>&1 + file $to/kea.pdf | grep PDF > /dev/null 2>&1 if test $? -ne 0 ; then AC_MSG_RESULT([no - disabled building docs in PDF]) PDFLATEX=no -- 2.47.2