diff options
-rwxr-xr-x | EasyInstall.txt | 3 | ||||
-rwxr-xr-x | setuptools/command/easy_install.py | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/EasyInstall.txt b/EasyInstall.txt index f1271647..4263c4ff 100755 --- a/EasyInstall.txt +++ b/EasyInstall.txt @@ -1098,6 +1098,9 @@ Release Notes/Change History 0.6b3 * Fix local --find-links eggs not being copied except with --always-copy. + * Fix sometimes not detecting local packages installed outside of "site" + directories. + 0.6b2 * Don't install or update a ``site.py`` patch when installing to a ``PYTHONPATH`` directory with ``--multi-version``, unless an diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index 3a244470..eff60cf8 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -171,7 +171,7 @@ class easy_install(Command): self.package_index = self.create_index( self.index_url, search_path = self.shadow_path, hosts=hosts ) - self.local_index = Environment(self.shadow_path) + self.local_index = Environment(self.shadow_path+sys.path) if self.find_links is not None: if isinstance(self.find_links, basestring): |