##// END OF EJS Templates
make: switch the PYTHON default to `py.exe -3` on Windows...
Matt Harbison -
r46510:4f6816e8 default
parent child Browse files
Show More
@@ -8,9 +8,9 b' export PREFIX=/usr/local'
8
8
9 # Default to Python 3.
9 # Default to Python 3.
10 #
10 #
11 # Windows ships Python 3 as `python.exe`.
11 # Windows ships Python 3 as `python.exe`, which may not be on PATH. py.exe is.
12 ifeq ($(OS),Windows_NT)
12 ifeq ($(OS),Windows_NT)
13 PYTHON?=python
13 PYTHON?=py -3
14 else
14 else
15 PYTHON?=python3
15 PYTHON?=python3
16 endif
16 endif
General Comments 0
You need to be logged in to leave comments. Login now