From c8d94429fb2c2b0aed012442b29decd2495c71c7 Mon Sep 17 00:00:00 2001 From: KodaiYamashita Date: Thu, 2 Jan 2025 20:38:56 +0900 Subject: [PATCH] fix: update Sphinx build command to use '-b' option for better compatibility --- docs/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Makefile b/docs/Makefile index d0c3cbf..c3f7718 100755 --- a/docs/Makefile +++ b/docs/Makefile @@ -17,4 +17,4 @@ help: # Catch-all target: route all unknown targets to Sphinx using the new # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). %: Makefile - @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + @$(SPHINXBUILD) -b $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)