]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
Makefile: avoid bare quotes, since the emacs syntax-highlighter gets confused by...
authorBrian Warner <warner@lothar.com>
Thu, 7 Aug 2008 18:30:01 +0000 (11:30 -0700)
committerBrian Warner <warner@lothar.com>
Thu, 7 Aug 2008 18:30:01 +0000 (11:30 -0700)
Makefile

index d6a038fda384299e4016de19ac31f4d4f3d880b8..19366c4419915696e842ce502b44a633e7738c9b 100644 (file)
--- 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)