From 565e66d211bc41944f3398d6cdfa7fa2639ea16d Mon Sep 17 00:00:00 2001 From: Daira Hopwood Date: Wed, 16 Dec 2015 15:25:44 +0000 Subject: [PATCH] Fix use of bare "python" rather than $(PYTHON) in Makefile. Signed-off-by: Daira Hopwood --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index abda237a..af74acda 100644 --- a/Makefile +++ b/Makefile @@ -85,9 +85,9 @@ _tmpfstest: make-version .PHONY: smoketest smoketest: - -python ./src/allmydata/test/check_magicfolder_smoke.py kill + -$(PYTHON) ./src/allmydata/test/check_magicfolder_smoke.py kill -rm -rf smoke_magicfolder/ - python ./src/allmydata/test/check_magicfolder_smoke.py + $(PYTHON) ./src/allmydata/test/check_magicfolder_smoke.py # code coverage: install the "coverage" package from PyPI, do "make test-coverage" to # do a unit test run with coverage-gathering enabled, then use "make coverage-output" to -- 2.45.2