Makefile
changeset 45898 4f6816e8440b
parent 45835 f38d592f871a
child 45967 d9a05b11904d
--- a/Makefile	Fri Nov 20 21:06:38 2020 +0100
+++ b/Makefile	Sat Nov 21 15:34:54 2020 -0500
@@ -8,9 +8,9 @@
 
 # Default to Python 3.
 #
-# Windows ships Python 3 as `python.exe`.
+# Windows ships Python 3 as `python.exe`, which may not be on PATH.  py.exe is.
 ifeq ($(OS),Windows_NT)
-PYTHON?=python
+PYTHON?=py -3
 else
 PYTHON?=python3
 endif