Use python3 if it's present.

This commit is contained in:
matham 2020-10-16 13:41:57 -04:00 committed by GitHub
parent f031f2a679
commit 9ac3c9a70b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 4 deletions

View File

@ -4,7 +4,15 @@
ENDUSER_BUILD = yes ENDUSER_BUILD = yes
# You can set these variables from the command line. # You can set these variables from the command line.
PYTHON = python PYTHON = python3
ifeq (, $(shell which $(PYTHON) 2> /dev/null ))
PYTHON := python
endif
ifeq (, $(shell which $(PYTHON) 2> /dev/null))
$(error "PYTHON=$(PYTHON) not found in $(PATH)")
endif
SPHINXOPTS = -Q SPHINXOPTS = -Q
SPHINXOPTS_TEST = -W -T SPHINXOPTS_TEST = -W -T
SPHINXBUILD = sphinx-build SPHINXBUILD = sphinx-build