Commit 0e313b1e authored by Jim Fulton's avatar Jim Fulton

Removed a workaround for a bug that was fixed in setuptools 0.6b3.

parent e445e585
...@@ -42,7 +42,6 @@ class Egg: ...@@ -42,7 +42,6 @@ class Egg:
distribution, distribution,
buildout.eggs, buildout.eggs,
[buildout.buildout_path(link) for link in links], [buildout.buildout_path(link) for link in links],
always_copy = True,
) )
scripts = self.options.get('scripts') scripts = self.options.get('scripts')
......
...@@ -46,11 +46,6 @@ def install(spec, dest, links=(), **kw): ...@@ -46,11 +46,6 @@ def install(spec, dest, links=(), **kw):
) )
easy.finalize_options() easy.finalize_options()
# hack around easy_install bug
easy.local_index = pkg_resources.Environment(
easy.shadow_path + sys.path)
old_warn = distutils.log.warn old_warn = distutils.log.warn
distutils.log.warn = lambda *a, **k: None distutils.log.warn = lambda *a, **k: None
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment