Remove .exe suffix on make target

This commit is contained in:
ericatkin 2016-04-05 22:56:20 -06:00
parent 78a870c5f3
commit 220c0747e1

View file

@ -64,9 +64,9 @@ class HostpythonRecipe(Recipe):
"--disable-toolbox-glue", "--disable-toolbox-glue",
"--without-gcc", "--without-gcc",
_env=build_env) _env=build_env)
shprint(sh.make, "-C", self.build_dir, "-j4", "python.exe", "Parser/pgen", shprint(sh.make, "-C", self.build_dir, "-j4", "python", "Parser/pgen",
_env=build_env) _env=build_env)
shutil.move("python.exe", "hostpython") shutil.move("python", "hostpython")
shutil.move("Parser/pgen", "Parser/hostpgen") shutil.move("Parser/pgen", "Parser/hostpgen")
def install(self): def install(self):