summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/bdist.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/distutils/command/bdist.py')
-rw-r--r--Lib/distutils/command/bdist.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/distutils/command/bdist.py b/Lib/distutils/command/bdist.py
index 892712e..df4e3a0 100644
--- a/Lib/distutils/command/bdist.py
+++ b/Lib/distutils/command/bdist.py
@@ -53,7 +53,7 @@ class bdist (Command):
# temporary directories (eg. we'll probably have
# "build/bdist.<plat>/dumb", "build/bdist.<plat>/rpm", etc.)
if self.bdist_base is None:
- build_base = self.find_peer('build').build_base
+ build_base = self.get_finalized_command('build').build_base
plat = get_platform()
self.bdist_base = os.path.join (build_base, 'bdist.' + plat)
@@ -79,9 +79,9 @@ class bdist (Command):
"invalid archive format '%s'" % self.format
if cmd_name not in self.no_format_option:
- sub_cmd = self.find_peer (cmd_name)
+ sub_cmd = self.get_finalized_command (cmd_name)
sub_cmd.format = self.format
- self.run_peer (cmd_name)
+ self.run_command (cmd_name)
# run()