From d9fea2566c45ed1df00d45ccd67ba8559267dc07 Mon Sep 17 00:00:00 2001
From: Zooko O'Whielacronx <zooko@zooko.com>
Date: Thu, 20 Dec 2007 16:07:17 -0700
Subject: [PATCH] setup: use os.path.join('misc', 'dependencies') instead of
 "misc/dependencies" In the hopes that this will make the boostrapping of
 setuptools from its bundled egg work on Windows.

---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 4df5596a..45f34dec 100644
--- a/setup.py
+++ b/setup.py
@@ -34,7 +34,7 @@ else:
         # version which fixed this problem.
         min_version='0.6c4'
     use_setuptools(min_version=min_version,
-                   download_base="file:misc/dependencies/",
+                   download_base="file:%s" % os.path.join('misc', 'dependencies'),
                    download_delay=0)
 
 from setuptools import Extension, find_packages, setup
-- 
2.45.2