]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
setup: fix bug in previous patch to include .egg's from CWD
authorZooko O'Whielacronx <zooko@zooko.com>
Sat, 22 Dec 2007 18:14:27 +0000 (11:14 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Sat, 22 Dec 2007 18:14:27 +0000 (11:14 -0700)
misc/find-dep-eggs.py

index ef6071ea8003a57e1f47ed5c41432b73d9342aa8..64028b328022128125df2d978940955efef46c80 100644 (file)
@@ -18,6 +18,6 @@ if os.path.exists(support_lib):
 # libraries that we've installed if *they* require them.
 for fn in os.listdir("."):
     if fn.endswith(".egg"):
-        path.append(os.path.abspath(os.path.join(support_lib, fn)))
+        path.append(os.path.abspath(os.path.join(os.get_cwd(), fn)))
 
 print os.pathsep.join(path)