From 2eea946128b7ee834cc67f07f9627c245f0dd417 Mon Sep 17 00:00:00 2001 From: David Cerdeira Date: Mon, 21 Nov 2022 17:05:45 +0000 Subject: [PATCH] fix: Fix sphinxcontrib.spelling caching issue I was affected by this issue https://stackoverflow.com/questions/17366625/sphinx-uses-old-module-code on my local setup, which prevented me from being able to locally (even inside the bao docker) check the spelling. The fix forces the spelling check command to generate all outputs instead of trying to cache them. This is a more portable behavior, as it allows to use the same tools be used across projects transparently. Signed-off-by: David Cerdeira --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4562d78..cb4f7d7 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ # You can set these variables from the command line, and also # from the environment for the first two. -SPHINXOPTS ?= -W +SPHINXOPTS ?= -W -a SPHINXBUILD ?= sphinx-build SOURCEDIR = source BUILDDIR = build