Commit e8d088c6 authored by Greg Ward's avatar Greg Ward

Fix 'reinitialize_command()' so it resets the 'have_run' flag for the

command being reinitialized to false.
parent 923b7f43
...@@ -712,6 +712,7 @@ class Distribution: ...@@ -712,6 +712,7 @@ class Distribution:
return command return command
command.initialize_options() command.initialize_options()
command.finalized = 0 command.finalized = 0
self.have_run[command_name] = 0
self._set_command_options(command) self._set_command_options(command)
return command return command
......
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