Skip to content

Commit 0716e3f

Browse files
committed
Fix m4 quoting on Sphinx check error message.
The error message quoting for the Sphinx check failure was removed in c2d4999, but is actually needed. If you omit the quoting, the error turns into this: checking for python3 script directory (pythondir)... ${PYTHON_PREFIX}/lib/python3.11/site-packages checking for python3 extension module directory (pyexecdir)... ${PYTHON_EXEC_PREFIX}/lib/python3.11/site-packages checking for ... /usr/local/bin/python3 -m sphinx checking for sphinx version >= 1.7.5... No module named 'sphinx' ./configure: line 441: test: check: integer expression expected configure: error: Sphinx ./configure: line 312: return: check: numeric argument required ./configure: line 322: exit: check: numeric argument required Signed-off-by: James Peach <jpeach@apache.org>
1 parent 3887623 commit 0716e3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ AC_ARG_ENABLE([docs],
362362
],[
363363
sphinx_version_check=no
364364
enable_doc_build=no
365-
AC_MSG_ERROR(Doc building disabled, check Sphinx installation)
365+
AC_MSG_ERROR([Doc building disabled, check Sphinx installation])
366366
])
367367
368368

0 commit comments

Comments
 (0)