diff options
Diffstat (limited to 'setuptools/command/install_egg_info.py')
-rwxr-xr-x | setuptools/command/install_egg_info.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/setuptools/command/install_egg_info.py b/setuptools/command/install_egg_info.py index 14f9755f..0b61a11d 100755 --- a/setuptools/command/install_egg_info.py +++ b/setuptools/command/install_egg_info.py @@ -23,6 +23,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] def run(self): self.run_command('egg_info') @@ -38,9 +39,8 @@ class install_egg_info(Command): ) - def get_outputs(self): - return [self.target] # XXX list all files, not just dir? + return self.outputs def copytree(self): # Copy the .egg-info tree to site-packages @@ -52,6 +52,7 @@ class install_egg_info(Command): for skip in '.svn/','CVS/': if src.startswith(skip) or '/'+skip in src: return None + self.outputs.append(dst) log.debug("Copying %s to %s", src, dst) return dst @@ -79,4 +80,3 @@ class install_egg_info(Command): - |