##// 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 # % make PREFIX=/opt/ install
5 # % make PREFIX=/opt/ install
6
6
7 export PREFIX=/usr/local
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 PYTHON?=python
13 PYTHON?=python
14 else
15 PYTHON?=python3
16 endif
17
9 $(eval HGROOT := $(shell pwd))
18 $(eval HGROOT := $(shell pwd))
10 HGPYTHONS ?= $(HGROOT)/build/pythons
19 HGPYTHONS ?= $(HGROOT)/build/pythons
11 PURE=
20 PURE=
General Comments 0
You need to be logged in to leave comments. Login now