]> git.rkrishnan.org Git - tahoe-lafs/zfec.git/commitdiff
setup: prepend os.getcwd() to misc/dependencies
authorzooko <zooko@zooko.com>
Sun, 30 Dec 2007 03:08:02 +0000 (08:38 +0530)
committerzooko <zooko@zooko.com>
Sun, 30 Dec 2007 03:08:02 +0000 (08:38 +0530)
This is actually useful because if for example you invoke "easy_install
~/some/path/setup.py", then the CWD will be ~/some/path when the first part of
setup.py is evaluated, but will change to something else later, so the
misc/dependencies will not be found unless the CWD is prepended.  ***END OF

darcs-hash:68fcb948a6ec9414283868861cfeaa080c6525a8

zfec/setup.py

index e6d8a8a9a878a758030df442e8bc12a34a06a1b1..b231b1ab02e6f24c13fa671a2962571ea0824d65 100755 (executable)
@@ -11,7 +11,7 @@
 
 import os, re, sys
 
-miscdeps=os.path.join('misc', 'dependencies')
+miscdeps=os.path.join(os.getcwd(), 'misc', 'dependencies')
 
 try:
     from ez_setup import use_setuptools