Skip to content

Commit 322ad22

Browse files
author
Release Manager
committed
gh-36210: configure.ac: disable mathjax with --disable-doc Our mathjax package is used only to build the sphinx documentation that can be disabled with `--disable-doc`. It therefore makes sense to disable the mathjax package along with the other dependencies pruned by `--disable-doc`. URL: #36210 Reported by: Michael Orlitzky Reviewer(s): Kwankyu Lee
2 parents 6fe3561 + 86c309a commit 322ad22

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
@@ -530,7 +530,7 @@ AC_ARG_ENABLE([doc],
530530
AS_HELP_STRING([--disable-doc],
531531
[disable build of the Sage documentation and packages depending on it]), [
532532
dnl Disable packages needed for docbuilding
533-
for pkg in sage_docbuild alabaster babel snowballstemmer imagesize sphinx sphinxcontrib_devhelp sphinxcontrib_jsmath sphinxcontrib_serializinghtml sphinxcontrib_applehelp sphinxcontrib_htmlhelp sphinxcontrib_qthelp sphinxcontrib_websupport jupyter_sphinx furo sphinx_copybutton; do
533+
for pkg in sage_docbuild alabaster babel snowballstemmer imagesize sphinx sphinxcontrib_devhelp sphinxcontrib_jsmath sphinxcontrib_serializinghtml sphinxcontrib_applehelp sphinxcontrib_htmlhelp sphinxcontrib_qthelp sphinxcontrib_websupport jupyter_sphinx furo sphinx_copybutton mathjax; do
534534
AS_VAR_SET([SAGE_ENABLE_$pkg], [$enableval])
535535
done
536536
AS_VAR_IF([enableval], [no], [dnl Disable the docbuild by disabling the install tree for documentation

0 commit comments

Comments
 (0)