diff options
author | Fred Drake <fdrake@acm.org> | 2004-03-25 22:04:52 +0000 |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2004-03-25 22:04:52 +0000 |
commit | 038ccb10c3b4bc2b253863f65ad85598b50487d0 (patch) | |
tree | c43074a58fd7f20b84a6a2c067f3144d0ecc57fd /Lib/distutils/command/build_scripts.py | |
parent | 14b9b30ccd78f38ca39a2d86429c6b6f92e236aa (diff) | |
download | cpython-038ccb10c3b4bc2b253863f65ad85598b50487d0.tar.gz |
make sure the default manifest generation includes files identified as
scripts
closes SF bug 796042
Diffstat (limited to 'Lib/distutils/command/build_scripts.py')
-rw-r--r-- | Lib/distutils/command/build_scripts.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/distutils/command/build_scripts.py b/Lib/distutils/command/build_scripts.py index 8de9cd3f6d..165a009ded 100644 --- a/Lib/distutils/command/build_scripts.py +++ b/Lib/distutils/command/build_scripts.py @@ -41,6 +41,8 @@ class build_scripts (Command): ('force', 'force')) self.scripts = self.distribution.scripts + def get_source_files(self): + return self.scripts def run (self): if not self.scripts: |