]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
setup: fix the name of "misc/dependencies" for bootstrapping setuptools
authorZooko O'Whielacronx <zooko@zooko.com>
Thu, 20 Dec 2007 23:13:10 +0000 (16:13 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Thu, 20 Dec 2007 23:13:10 +0000 (16:13 -0700)
setup.py

index 45f34dec75e20bd47b9332833b44dc14dee61d04..f0a45fe6b7a38ddcc30bc451ccfd8a6a486fcbc3 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -33,8 +33,9 @@ else:
         # breaks inside older setuptools' sandboxing. 0.6c4 is the first
         # version which fixed this problem.
         min_version='0.6c4'
+    downloadbase = os.path.join('misc', 'dependencies')+os.path.sep
     use_setuptools(min_version=min_version,
-                   download_base="file:%s" % os.path.join('misc', 'dependencies'),
+                   download_base=download_base,
                    download_delay=0)
 
 from setuptools import Extension, find_packages, setup