mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-04-07 10:56:49 +00:00
setup: whoops, fix the use of source-tree-root-dir eggs in our Makefile
This commit is contained in:
parent
e923bb9fb1
commit
b412847485
@ -14,4 +14,10 @@ if os.path.exists(support_lib):
|
||||
if fn.endswith(".egg"):
|
||||
path.append(os.path.abspath(os.path.join(support_lib, fn)))
|
||||
|
||||
# We also need to include .egg's in the CWD, because if there is an .egg there
|
||||
# then "make build-deps" will take that as satisfying its requirements.
|
||||
for fn in os.listdir("."):
|
||||
if fn.endswith(".egg"):
|
||||
path.append(os.path.abspath(os.path.join(os.getcwd(), fn)))
|
||||
|
||||
print os.pathsep.join(path)
|
||||
|
Loading…
x
Reference in New Issue
Block a user