From 914f8ce94fa2d67432924001b25444fef78096d8 Mon Sep 17 00:00:00 2001 From: Tarek Ismail Date: Thu, 3 Oct 2024 17:30:09 +0300 Subject: [PATCH] Fix venv activation when building HTML docs --- doc/sphinx/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/sphinx/Makefile b/doc/sphinx/Makefile index 4abfc2beb3..728b13e6d2 100644 --- a/doc/sphinx/Makefile +++ b/doc/sphinx/Makefile @@ -103,7 +103,7 @@ run: install html: install configure # Don't rebuild html if already built if [ -f "../build_doc/doc/sphinx/_build/index.html" ]; then exit 0; fi; \ - @. $(VENV); \ + . $(VENV); \ cd ../build_doc/doc/sphinx; \ $(SPHINXBUILD) -b dirhtml "$(SOURCEDIR)" "$(BUILDDIR)" -w $(SPHINXDIR)/warnings.txt $(SPHINXOPTS)