diff --git a/recipes/hostpython/__init__.py b/recipes/hostpython/__init__.py index 13284ce..ca3aac9 100644 --- a/recipes/hostpython/__init__.py +++ b/recipes/hostpython/__init__.py @@ -75,6 +75,8 @@ class HostpythonRecipe(Recipe): build_env = arch.get_env() build_dir = self.get_build_dir(arch.arch) build_env["PATH"] = os.environ["PATH"] + # Compiling sometimes looks for Python-ast.py in the 'Python' i.s.o + # the 'hospython' folder. Create a symlink to fix. See issue #201 shprint(sh.ln, "-s", join(build_dir, "hostpython"), join(build_dir, "Python"))