setup: fix scheme ("file:") for download base for boostrapping setuptools

This commit is contained in:
Zooko O'Whielacronx 2007-12-20 16:18:14 -07:00
parent 3028defb7e
commit c00ab7c5ea

View File

@ -33,7 +33,7 @@ else:
# breaks inside older setuptools' sandboxing. 0.6c4 is the first
# version which fixed this problem.
min_version='0.6c4'
download_base = os.path.join('misc', 'dependencies')+os.path.sep
download_base = "file:"+os.path.join('misc', 'dependencies')+os.path.sep
use_setuptools(min_version=min_version,
download_base=download_base,
download_delay=0)