]> granicus.if.org Git - python/commitdiff
Fixed to use 'reinitialize_command()' to fetch the "install" command object.
authorGreg Ward <gward@python.net>
Wed, 28 Jun 2000 00:36:40 +0000 (00:36 +0000)
committerGreg Ward <gward@python.net>
Wed, 28 Jun 2000 00:36:40 +0000 (00:36 +0000)
Lib/distutils/command/bdist_dumb.py

index 51e35e4b1524864bc21a8a63a7ef622ad5878904..f9c81fc24777c183dd3dbdc98832ed2ef81d53c5 100644 (file)
@@ -58,12 +58,7 @@ class bdist_dumb (Command):
 
         self.run_command ('build')
 
-        # XXX don't use 'self.get_finalized_command()', because it always runs
-        # 'ensure_finalized()' on the command object; we explictly want a
-        # command object that has *not* been finalized, so we can set
-        # options on it!  (The option we set, 'root', is so that we can do
-        # a proper "fake install" using this install command object.)
-        install = self.distribution.get_command_obj('install')
+        install = self.reinitialize_command('install')
         install.root = self.bdist_dir
 
         self.announce ("installing to %s" % self.bdist_dir)