From 60573a2917eb09c3628cf06248ac1438a0645d66 Mon Sep 17 00:00:00 2001
From: Zooko O'Whielacronx <zooko@zooko.com>
Date: Wed, 19 Sep 2007 20:26:54 -0700
Subject: [PATCH] Makefile: end PYTHONPATH with "." because the string might
 end with "\", which will cause shell to later escape whatever character comes
 after the string

---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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:
-- 
2.45.2