From 1a25add44ae7004e260fb6d8841ef3c8f716b141 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Thu, 30 Apr 2009 13:04:24 +0002 Subject: [PATCH] Support running tests with other versions of Python. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 516e41c..05a63bf 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ PYTHON = python SETUP = $(PYTHON) setup.py -TRIAL = trial +TRIAL = $(shell which trial) all: build @@ -12,10 +12,10 @@ install:: $(SETUP) install check:: build - PYTHONPATH=. $(TRIAL) dulwich + PYTHONPATH=. $(PYTHON) $(TRIAL) dulwich check-noextensions:: clean - PYTHONPATH=. $(TRIAL) dulwich + PYTHONPATH=. $(PYTHON) $(TRIAL) dulwich clean:: $(SETUP) clean -- 2.34.1