--- /usr/local/src/distutils/distutils/command/install_scripts.py Mon Oct 9 23:28:40 2000 +++ install_scripts.py Sun Oct 29 18:42:29 2000 @@ -30,6 +30,7 @@ self.force = 0 self.build_dir = None self.skip_build = None + self.outfiles = [] def finalize_options (self): self.set_undefined_options('build', ('build_scripts', 'build_dir')) @@ -42,7 +43,7 @@ def run (self): if not self.skip_build: self.run_command('build_scripts') - self.outfiles = self.copy_tree(self.build_dir, self.install_dir) + self.outfiles.extend(self.copy_tree(self.build_dir, self.install_dir)) if os.name == 'posix': # Set the executable bits (owner, group, and world) on # all the scripts we just installed. @@ -58,6 +59,6 @@ return self.distribution.scripts or [] def get_outputs(self): - return self.outfiles or [] + return self.outfiles # class install_scripts