We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f043c2e commit 4573893Copy full SHA for 4573893
1 file changed
Doc/Makefile
@@ -7,8 +7,8 @@
7
PYTHON = python3
8
VENVDIR = ./venv
9
UV = uv
10
-SPHINXBUILD = env PATH=$(VENVDIR)/bin:$$PATH sphinx-build
11
-BLURB = env PATH=$(VENVDIR)/bin:$$PATH blurb
+SPHINXBUILD = PATH=$(VENVDIR)/bin:$$PATH sphinx-build
+BLURB = PATH=$(VENVDIR)/bin:$$PATH blurb
12
JOBS = auto
13
PAPER =
14
SOURCES =
@@ -58,7 +58,7 @@ build:
58
@if [ -f ../Misc/NEWS ] ; then \
59
echo "Using existing Misc/NEWS file"; \
60
cp ../Misc/NEWS build/NEWS; \
61
- elif which $(BLURB); which $(SPHINXBUILD); $(BLURB) help >/dev/null 2>&1 && $(SPHINXBUILD) --version >/dev/null 2>&1; then \
+ elif $(BLURB) help >/dev/null 2>&1 && $(SPHINXBUILD) --version >/dev/null 2>&1; then \
62
if [ -d ../Misc/NEWS.d ]; then \
63
echo "Building NEWS from Misc/NEWS.d with blurb"; \
64
$(BLURB) merge -f build/NEWS; \
0 commit comments