From 1e8fc6cffd346037ded7720a983aacae1d2e551b Mon Sep 17 00:00:00 2001
From: Zooko O'Whielacronx <zooko@zooko.com>
Date: Thu, 20 Sep 2007 17:02:54 -0700
Subject: [PATCH] Makefile: attempt to workaround problem caused by workaround
 for backslashes glomming onto the following double-quote. ...

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

diff --git a/Makefile b/Makefile
index 8265ac4e..8f8b700c 100644
--- a/Makefile
+++ b/Makefile
@@ -18,6 +18,7 @@ default: build
 
 PYTHON=python
 PATHSEP=$(shell python -c 'import os ; print os.pathsep')
+OSSEP=$(shell python -c 'import os ; print os.sep')
 TRIALPATH=$(shell which trial.py 2>/dev/null)
 ifeq ($(TRIALPATH),)
 TRIALPATH=$(shell which trial 2>/dev/null)
@@ -69,7 +70,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)$(OSSEP)."
 
 .PHONY: make-version build
 make-version:
-- 
2.45.2