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/pf/components/com_hotproperty/css/simplejson/frontends?a=commitdiff_plain;h=refs%2Fheads%2F2438.fix-tests.2;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