From: Zooko O'Whielacronx <zooko@zooko.com>
Date: Thu, 20 Sep 2007 03:26:54 +0000 (-0700)
Subject: Makefile: end PYTHONPATH with "." because the string might end with "\", which will... 
X-Git-Tag: allmydata-tahoe-0.6.0~44
X-Git-Url: https://git.rkrishnan.org/%5B/frontends/flags/index.php?a=commitdiff_plain;h=60573a2917eb09c3628cf06248ac1438a0645d66;p=tahoe-lafs%2Ftahoe-lafs.git

Makefile: end PYTHONPATH with "." because the string might end with "\", which will cause shell to later escape whatever character comes after the string
---

diff --git a/Makefile b/Makefile
index 3365027f..8265ac4e 100644
--- a/Makefile
+++ b/Makefile
@@ -69,7 +69,7 @@ EGGSPATH = $(shell $(PYTHON) misc/find-dep-eggs.py)
 show-eggspath:
 	@echo $(EGGSPATH)
 
-PP=PYTHONPATH="$(SRCPATH)$(PATHSEP)$(EGGSPATH)$(PATHSEP)$(PYTHONPATH)"
+PP=PYTHONPATH="$(SRCPATH)$(PATHSEP)$(EGGSPATH)$(PATHSEP)$(PYTHONPATH)."
 
 .PHONY: make-version build
 make-version: