From 2ee424b3a362cd02d0f3cd1b61a351025a2e4400 Mon Sep 17 00:00:00 2001
From: Zooko O'Whielacronx <zooko@zooko.com>
Date: Sat, 22 Dec 2007 11:14:27 -0700
Subject: [PATCH] setup: fix bug in previous patch to include .egg's from CWD

---
 misc/find-dep-eggs.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/misc/find-dep-eggs.py b/misc/find-dep-eggs.py
index ef6071ea..64028b32 100644
--- 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)
-- 
2.45.2