From 3d37fd05f4bedbc01dfaf210efbcfc9c9b4de797 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Thu, 10 Sep 2020 16:14:18 -0400 Subject: [PATCH] disable caching - for now - to avoid bad side effects from sphinx-tabs --- doc/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/Makefile b/doc/Makefile index d96b523915..61875cbaae 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -41,7 +41,10 @@ HAS_PDFLATEX = YES endif -SPHINXEXTRA = -j $(shell $(PYTHON) -c 'import multiprocessing;print(multiprocessing.cpu_count())') $(shell test -f $(BUILDDIR)/doxygen/xml/run.stamp && printf -- "-E") +#SPHINXEXTRA = -j $(shell $(PYTHON) -c 'import multiprocessing;print(multiprocessing.cpu_count())') $(shell test -f $(BUILDDIR)/doxygen/xml/run.stamp && printf -- "-E") + +# temporarily disable caching so that the hack for the sphinx-tabs extensions to get proper non-html output works +SPHINXEXTRA = -E -j $(shell $(PYTHON) -c 'import multiprocessing;print(multiprocessing.cpu_count())') # grab list of sources from doxygen config file. # we only want to use explicitly listed files.