diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-02-07 09:29:20 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-02-07 09:29:20 -0500 |
commit | c30340f3c00c64ea131596537fb7c01fc9b9e643 (patch) | |
tree | 467ee06f6f3ad33ca3c76248645d9a324b52659b /setuptools/command/install_egg_info.py | |
parent | 8954900a7c88831cf96679f404c2e02e16cefda0 (diff) | |
parent | 0e689bb35e8af9f079f6985a11c80268575f786e (diff) | |
download | external_python_setuptools-c30340f3c00c64ea131596537fb7c01fc9b9e643.tar.gz external_python_setuptools-c30340f3c00c64ea131596537fb7c01fc9b9e643.tar.bz2 external_python_setuptools-c30340f3c00c64ea131596537fb7c01fc9b9e643.zip |
Merge backout of 1ae2a75724bb; fixes #118.
Diffstat (limited to 'setuptools/command/install_egg_info.py')
-rwxr-xr-x | setuptools/command/install_egg_info.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/install_egg_info.py b/setuptools/command/install_egg_info.py index f777538f..60b615d2 100755 --- a/setuptools/command/install_egg_info.py +++ b/setuptools/command/install_egg_info.py @@ -29,7 +29,7 @@ class install_egg_info(Command): ).egg_name() + '.egg-info' self.source = ei_cmd.egg_info self.target = os.path.join(self.install_dir, basename) - self.outputs = [self.target] + self.outputs = [] def run(self): self.run_command('egg_info') |