From: Brian Warner Date: Thu, 7 Aug 2008 18:30:01 +0000 (-0700) Subject: Makefile: avoid bare quotes, since the emacs syntax-highlighter gets confused by... X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=c4405b529fc73795715981b52fc0c3aaa42438e2;p=tahoe-lafs%2Ftahoe-lafs.git Makefile: avoid bare quotes, since the emacs syntax-highlighter gets confused by them --- diff --git a/Makefile b/Makefile index d6a038fd..19366c44 100644 --- a/Makefile +++ b/Makefile @@ -61,10 +61,11 @@ endif PATH := $(subst ",,${PATH}) PATH := $(subst ',,$(PATH)) +# ' " # emacs syntax-highlighter gets confused by the bare quotes above TRIALCMD = $(shell PATH="$(PATH):${PWD}/support/bin" $(PP) $(PYTHON) misc/find_trial.py) ifeq ($(TRIALCMD),) -$(error Couldn't find trial. It comes with twisted.) +$(error Could not find trial. It comes with twisted.) endif TRIAL=PATH="$(PATH):${PWD}/support/bin" PYTHONUNBUFFERED=1 $(TRIALCMD) --rterrors $(REACTOROPT)