From: Zooko O'Whielacronx <zooko@zooko.com>
Date: Thu, 20 Dec 2007 23:07:17 +0000 (-0700)
Subject: setup: use os.path.join('misc', 'dependencies') instead of "misc/dependencies"
X-Git-Url: https://git.rkrishnan.org/%5B/frontends/%22file:/flags/?a=commitdiff_plain;h=d9fea2566c45ed1df00d45ccd67ba8559267dc07;p=tahoe-lafs%2Ftahoe-lafs.git

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.
---

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