]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
setup: use os.path.join('misc', 'dependencies') instead of "misc/dependencies"
authorZooko O'Whielacronx <zooko@zooko.com>
Thu, 20 Dec 2007 23:07:17 +0000 (16:07 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Thu, 20 Dec 2007 23:07:17 +0000 (16:07 -0700)
In the hopes that this will make the boostrapping of setuptools from its bundled egg work on Windows.

setup.py

index 4df5596a2c6ed03759811997c165b755cfb5d4cf..45f34dec75e20bd47b9332833b44dc14dee61d04 100644 (file)
--- 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