projects
/
tahoe-lafs
/
tahoe-lafs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a85a4d7
)
setup: use os.path.join('misc', 'dependencies') instead of "misc/dependencies"
author
Zooko O'Whielacronx
<zooko@zooko.com>
Thu, 20 Dec 2007 23:07:17 +0000
(16:07 -0700)
committer
Zooko 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
patch
|
blob
|
history
diff --git
a/setup.py
b/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