@@ -22,7 +22,7 @@ class Python3CrystaXRecipe(TargetPythonRecipe):
2222 from_crystax = True
2323
2424 def get_dir_name (self ):
25- name = super (Python3Recipe , self ).get_dir_name ()
25+ name = super (Python3CrystaXRecipe , self ).get_dir_name ()
2626 name += '-version{}' .format (self .version )
2727 return name
2828
@@ -77,11 +77,11 @@ def create_python_bundle(self, dirn, arch):
7777 ndk_dir = self .ctx .ndk_dir
7878 py_recipe = self .ctx .python_recipe
7979 python_dir = join (ndk_dir , 'sources' , 'python' ,
80- py_recipe .version , 'libs' , arch .arch )
80+ py_recipe .version , 'libs' , arch .arch )
8181 shprint (sh .cp , '-r' , join (python_dir ,
82- 'stdlib.zip' ), dirn )
82+ 'stdlib.zip' ), dirn )
8383 shprint (sh .cp , '-r' , join (python_dir ,
84- 'modules' ), dirn )
84+ 'modules' ), dirn )
8585 shprint (sh .cp , '-r' , self .ctx .get_python_install_dir (),
8686 join (dirn , 'site-packages' ))
8787
@@ -98,4 +98,5 @@ def link_root(self, arch_name):
9898 return join (self .ctx .ndk_dir , 'sources' , 'python' , self .major_minor_version_string ,
9999 'libs' , arch_name )
100100
101+
101102recipe = Python3CrystaXRecipe ()
0 commit comments