D7258: makefile: use Python 3 by default (BC)
indygreg (Gregory Szorc)
phabricator at mercurial-scm.org
Thu Nov 5 16:21:35 UTC 2020
Closed by commit rHGc2837640aeb0: makefile: use Python 3 by default (BC) (authored by indygreg).
This revision was automatically updated to reflect the committed changes.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D7258?vs=23421&id=23422
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D7258/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D7258
AFFECTED FILES
Makefile
CHANGE DETAILS
diff --git a/Makefile b/Makefile
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,16 @@
# % make PREFIX=/opt/ install
export PREFIX=/usr/local
+
+# Default to Python 3.
+#
+# Windows ships Python 3 as `python.exe`.
+ifeq ($(OS),Windows_NT)
PYTHON?=python
+else
+PYTHON?=python3
+endif
+
$(eval HGROOT := $(shell pwd))
HGPYTHONS ?= $(HGROOT)/build/pythons
PURE=
To: indygreg, #hg-reviewers, martinvonz, mharbison72, durin42
Cc: mercurial-patches, yuja, mharbison72, durin42, dlax, martinvonz, mercurial-devel
More information about the Mercurial-devel
mailing list