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:
7fdcbdd
)
setup: fix bug in previous patch to include .egg's from CWD
author
Zooko O'Whielacronx
<zooko@zooko.com>
Sat, 22 Dec 2007 18:14:27 +0000
(11:14 -0700)
committer
Zooko O'Whielacronx
<zooko@zooko.com>
Sat, 22 Dec 2007 18:14:27 +0000
(11:14 -0700)
misc/find-dep-eggs.py
patch
|
blob
|
history
diff --git
a/misc/find-dep-eggs.py
b/misc/find-dep-eggs.py
index ef6071ea8003a57e1f47ed5c41432b73d9342aa8..64028b328022128125df2d978940955efef46c80 100644
(file)
--- a/
misc/find-dep-eggs.py
+++ b/
misc/find-dep-eggs.py
@@
-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)