##// END OF EJS Templates
makefile: use Python 3 by default (BC)...
Gregory Szorc -
r46425:c2837640 default
parent child Browse files
Show More
@@ -5,7 +5,16 b''
5 5 # % make PREFIX=/opt/ install
6 6
7 7 export PREFIX=/usr/local
8
9 # Default to Python 3.
10 #
11 # Windows ships Python 3 as `python.exe`.
12 ifeq ($(OS),Windows_NT)
8 13 PYTHON?=python
14 else
15 PYTHON?=python3
16 endif
17
9 18 $(eval HGROOT := $(shell pwd))
10 19 HGPYTHONS ?= $(HGROOT)/build/pythons
11 20 PURE=
General Comments 0
You need to be logged in to leave comments. Login now