diff options
-rwxr-xr-x | setuptools/command/egg_info.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/egg_info.py b/setuptools/command/egg_info.py index b73d42ee..15d8ae19 100755 --- a/setuptools/command/egg_info.py +++ b/setuptools/command/egg_info.py @@ -218,6 +218,8 @@ class manifest_maker(sdist): def run(self): self.filelist = FileList() + if not os.path.exists(self.manifest): + self.write_manifest() # it must exist so it'll get in the list self.filelist.findall() self.add_defaults() if os.path.exists(self.template): @@ -242,8 +244,6 @@ class manifest_maker(sdist): - - def add_defaults(self): sdist.add_defaults(self) self.filelist.append(self.template) |