Commit 82c7e63d authored by Tarek Ziadé's avatar Tarek Ziadé

#7068: Fixed the partial renaming that occured in r72594

parent 77aaa5d7
......@@ -303,7 +303,7 @@ class build_ext (Command):
# Setup the CCompiler object that we'll use to do all the
# compiling and linking
self.compiler = new_compiler(compiler=None,
self.compiler = new_compiler(compiler=self.compiler,
verbose=self.verbose,
dry_run=self.dry_run,
force=self.force)
......
......@@ -264,7 +264,7 @@ class BuildExtTestCase(support.TempdirManager,
sysconfig.get_config_var('SO'))
so_dir = os.path.dirname(so_file)
self.assertEquals(so_dir, other_tmp_dir)
cmd.compiler = None
cmd.inplace = 0
cmd.run()
so_file = cmd.get_outputs()[0]
......
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