Commit 78bb6f68 authored by Martin v. Löwis's avatar Martin v. Löwis

Add missing executable option to DummyCommand.

parent e640606e
......@@ -39,11 +39,13 @@ class BuildScriptsTestCase(support.TempdirManager,
self.assert_(name in built)
def get_build_scripts_cmd(self, target, scripts):
import sys
dist = Distribution()
dist.scripts = scripts
dist.command_obj["build"] = support.DummyCommand(
build_scripts=target,
force=1
force=1,
executable=sys.executable
)
return build_scripts(dist)
......
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