From 1e04ad47208d71a63d5551b89de8bbedcc717309 Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Mon, 15 Oct 2007 15:01:59 -0700 Subject: [PATCH] Makefile: define TRIALCMD with '=' not ':=', to fix make-clean test. Closes #180 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ac39b2be..260bb2ef 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ else CHECK_PYWIN32_DEP := endif -TRIALCMD := $(shell PYTHONPATH="$(PYTHONPATH)$(PATHSEP)$(SRCPATH)" $(PYTHON) misc/find_trial.py) +TRIALCMD = $(shell PYTHONPATH="$(PYTHONPATH)$(PATHSEP)$(SRCPATH)" $(PYTHON) misc/find_trial.py) ifeq ($(PLAT),cygwin) REACTOR = poll -- 2.45.2