Commit f09c52fb authored by Greg Ward's avatar Greg Ward

Ensure sub-commands of "install" are reinitialized too.

Run "install" the right way, by calling 'run_command()'.
parent a31a2fa5
......@@ -71,12 +71,11 @@ class bdist_dumb (Command):
self.run_command ('build')
install = self.reinitialize_command('install')
install = self.reinitialize_command('install', reinit_subcommands=1)
install.root = self.bdist_dir
self.announce ("installing to %s" % self.bdist_dir)
install.ensure_finalized()
install.run()
self.run_command('install')
# And make an archive relative to the root of the
# pseudo-installation tree.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment