https://github.com/python/cpython/commit/ba6eba5a85a52f7978e0dbf260e4e52d697af01a commit: ba6eba5a85a52f7978e0dbf260e4e52d697af01a branch: 3.10 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2026-03-05T22:29:52+02:00 summary:
[3.10] gh-145455: Show output of blurb & sphinx-build version commands (GH-145457) (#145489) Co-authored-by: Petr Viktorin <[email protected]> files: M Doc/Makefile diff --git a/Doc/Makefile b/Doc/Makefile index dc800b27fb9596..70ea4d0aa4ee89 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -56,7 +56,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; \ _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
