python now compiles for all arch \o/

This commit is contained in:
Mathieu Virbel 2015-02-03 18:42:17 +01:00
parent d4c1ac88d7
commit bfd8532e0e
5 changed files with 101 additions and 36 deletions
recipes/hostpython

View file

@ -13,10 +13,10 @@ class HostpythonRecipe(Recipe):
def download(self):
super(HostpythonRecipe, self).download()
self.ctx.hostpython = join(
self.ctx.build_dir, "i386", self.archive_root,
self.ctx.build_dir, self.name, "i386", self.archive_root,
"hostpython")
self.ctx.hostpgen = join(
self.ctx.build_dir, "i386", self.archive_root,
self.ctx.build_dir, self.name, "i386", self.archive_root,
"Parser", "hostpgen")
print("Global: hostpython located at {}".format(self.ctx.hostpython))
print("Global: hostpgen located at {}".format(self.ctx.hostpgen))