From 73826c5cc98fd517184be1d6b4e2264556a1bbdf Mon Sep 17 00:00:00 2001
From: Zooko O'Whielacronx <zooko@zooko.com>
Date: Thu, 13 Sep 2007 15:37:34 -0700
Subject: [PATCH] fix Makefile not to assume that ":" is the PYTHONPATH
 separator (It is ";" on Windows.)

---
 Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index c029d7b8..ea7e2a25 100644
--- a/Makefile
+++ b/Makefile
@@ -60,13 +60,13 @@ SUPPORT = $(BASE)/support
 SUPPORTLIB = $(SUPPORT)/lib/$(PYVER)/site-packages
 build-deps:
 	mkdir -p $(SUPPORTLIB)
-	PYTHONPATH=$(SUPPORTLIB) $(PYTHON) setup.py install \
+	PYTHONPATH=$(PYTHONPATH)$(PATHSEP)$(SUPPORTLIB) $(PYTHON) setup.py install \
 	 --prefix=$(SUPPORT)
 EGGSPATH = $(shell $(PYTHON) misc/find-dep-eggs.py)
 show-eggspath:
 	@echo $(EGGSPATH)
 
-PP=PYTHONPATH=$(EGGSPATH):$(PYTHONPATH)
+PP=PYTHONPATH=$(EGGSPATH)$(PATHSEP)$(PYTHONPATH)
 
 .PHONY: make-version build
 make-version:
-- 
2.45.2