From 220c0747e110f8df989125eb1d8a10c7500162a0 Mon Sep 17 00:00:00 2001 From: ericatkin Date: Tue, 5 Apr 2016 22:56:20 -0600 Subject: [PATCH] Remove .exe suffix on make target --- recipes/hostpython/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/hostpython/__init__.py b/recipes/hostpython/__init__.py index b259759..eb80cdb 100644 --- a/recipes/hostpython/__init__.py +++ b/recipes/hostpython/__init__.py @@ -64,9 +64,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):