aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2012-03-30 09:10:44 -0400
committerJason R. Coombs <jaraco@jaraco.com>2012-03-30 09:10:44 -0400
commitc2ee921caa6757e4b8e34687cf758cf7859a0737 (patch)
treec99b126e9bcacac95ae171009468344fbaf3e5c0
parentd388348dbca2972ed9cf6b2a9eff3b264f0e58b7 (diff)
downloadexternal_python_setuptools-c2ee921caa6757e4b8e34687cf758cf7859a0737.tar.gz
external_python_setuptools-c2ee921caa6757e4b8e34687cf758cf7859a0737.tar.bz2
external_python_setuptools-c2ee921caa6757e4b8e34687cf758cf7859a0737.zip
Backout changes to dist.py from 488cc8a13f66
--HG-- branch : distribute extra : rebase_source : 2aeb4f273f05dd10b26a530c40dabfcb57861d37
-rw-r--r--setuptools/dist.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/setuptools/dist.py b/setuptools/dist.py
index 204dcdfa..0ad18122 100644
--- a/setuptools/dist.py
+++ b/setuptools/dist.py
@@ -269,9 +269,8 @@ class Distribution(_Distribution):
cmd.package_index.to_scan = []
except AttributeError:
from setuptools.command.easy_install import easy_install
- dist = self.__class__()
+ dist = self.__class__({'script_args':['easy_install']})
dist.parse_config_files()
- dist.parse_command_line()
opts = dist.get_option_dict('easy_install')
keep = (
'find_links', 'site_dirs', 'index_url', 'optimize',