From: Daira Hopwood Date: Wed, 16 Dec 2015 15:25:44 +0000 (+0000) Subject: Fix use of bare "python" rather than $(PYTHON) in Makefile. X-Git-Url: https://git.rkrishnan.org/vdrive/%22file:/listings/frontends/flags/%3C?a=commitdiff_plain;h=565e66d211bc41944f3398d6cdfa7fa2639ea16d;p=tahoe-lafs%2Ftahoe-lafs.git Fix use of bare "python" rather than $(PYTHON) in Makefile. Signed-off-by: Daira Hopwood --- 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