From c66d78c6f7c27c4c76b7ce7c3f719f17aec13aa3 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Sat, 8 Jun 2019 06:52:29 +0100 Subject: [PATCH] use PYTHON3 ?= "python3" instead of hard-coded python3 cmd --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 185a0d22..c32d0657 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,10 @@ +PYTHON3 ?= "python3" gitupdate: git submodule init git submodule update --recursive install: - python3 setup.py develop # yes, develop, not install + $(PYTHON3) setup.py develop # yes, develop, not install test: - python3 setup.py test # could just run nosetest3... + $(PYTHON3) setup.py test # could just run nosetest3... -- 2.30.2