Merge pull request #182 from ericatkin/master

Remove .exe suffix on make target
This commit is contained in:
Richard Larkin 2016-06-28 15:50:36 +02:00 committed by GitHub
commit b64efeef31

View file

@ -65,9 +65,9 @@ class HostpythonRecipe(Recipe):
"--disable-toolbox-glue",
"--without-gcc",
_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)
shutil.move("python.exe", "hostpython")
shutil.move("python", "hostpython")
shutil.move("Parser/pgen", "Parser/hostpgen")
def install(self):