]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
setup: leave the "file:" off the front of your URLs and setuptools (v0.6c7) will...
authorZooko O'Whielacronx <zooko@zooko.com>
Thu, 20 Sep 2007 22:29:12 +0000 (15:29 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Thu, 20 Sep 2007 22:29:12 +0000 (15:29 -0700)
calcdeps.py

index fb0a0e69c614562c30ca9e12619f35c9565965c4..e2090bb6a5fdd6ee3f9d49dd905574d3675d6849 100644 (file)
@@ -8,7 +8,7 @@ import os.path, sys
 #  "file:misc/dependencies/zfec-1.0.2.tar.gz",
 # The file: URL can start with either 'misc' or './misc' to get a relative path.
 
-dependency_tarballs=[ "file:" + os.path.join("misc", "dependencies", fn)
+dependency_tarballs=[ os.path.join("misc", "dependencies", fn)
                       for fn in os.listdir(os.path.join("misc", "dependencies"))
                       if fn.endswith(".tar.gz") or fn.endswith(".zip") ]