parent
98345a662e
commit
2ef99a4924
2 changed files with 2 additions and 8 deletions
|
@ -1,10 +1,4 @@
|
||||||
BROKEN_RECIPES = set(
|
BROKEN_RECIPES = set([])
|
||||||
[
|
|
||||||
# bad install directory or PYTHONPATH
|
|
||||||
# https://github.com/kivy/kivy-ios/issues/468
|
|
||||||
"werkzeug",
|
|
||||||
]
|
|
||||||
)
|
|
||||||
|
|
||||||
# recipes that were already built will be skipped
|
# recipes that were already built will be skipped
|
||||||
CORE_RECIPES = set(["kivy", "hostpython3", "python3"])
|
CORE_RECIPES = set(["kivy", "hostpython3", "python3"])
|
||||||
|
|
|
@ -16,7 +16,7 @@ class WerkzeugRecipe(PythonRecipe):
|
||||||
os.chdir(build_dir)
|
os.chdir(build_dir)
|
||||||
hostpython = sh.Command(self.ctx.hostpython)
|
hostpython = sh.Command(self.ctx.hostpython)
|
||||||
build_env = arch.get_env()
|
build_env = arch.get_env()
|
||||||
dest_dir = join(self.ctx.dist_dir, "root", "python")
|
dest_dir = join(self.ctx.dist_dir, "root", "python3")
|
||||||
build_env['PYTHONPATH'] = join(dest_dir, 'lib', 'python3.8', 'site-packages')
|
build_env['PYTHONPATH'] = join(dest_dir, 'lib', 'python3.8', 'site-packages')
|
||||||
shprint(hostpython, "setup.py", "install", "--prefix", dest_dir, _env=build_env)
|
shprint(hostpython, "setup.py", "install", "--prefix", dest_dir, _env=build_env)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue