From c7ab95ad0a646e3ec83d25221bca79b429e315d8 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Thu, 5 Mar 2026 21:39:19 +0100 Subject: [PATCH] [3.11] gh-145455: Show output of blurb & sphinx-build version commands (GH-145457) (#145491) Co-authored-by: Petr Viktorin --- Doc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/Makefile b/Doc/Makefile index 4d9b38ca3710..c558eb469a56 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -57,7 +57,7 @@ build: @if [ -f ../Misc/NEWS ] ; then \ echo "Using existing Misc/NEWS file"; \ cp ../Misc/NEWS build/NEWS; \ - elif $(BLURB) help >/dev/null 2>&1 && $(SPHINXBUILD) --version >/dev/null 2>&1; then \ + elif $(BLURB) --version && $(SPHINXBUILD) --version ; then \ if [ -d ../Misc/NEWS.d ]; then \ echo "Building NEWS from Misc/NEWS.d with blurb"; \ $(BLURB) merge -f build/NEWS; \ -- 2.47.3