From 89b7f047ec33727d9a23488f774ee6b885336b03 Mon Sep 17 00:00:00 2001 From: Ryan Pessa Date: Tue, 8 Dec 2015 17:14:15 -0600 Subject: [PATCH] fix pycrypto apply_patch error --- pythonforandroid/recipes/pycrypto/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pythonforandroid/recipes/pycrypto/__init__.py b/pythonforandroid/recipes/pycrypto/__init__.py index 4f984f09bf..4d52f8dba2 100644 --- a/pythonforandroid/recipes/pycrypto/__init__.py +++ b/pythonforandroid/recipes/pycrypto/__init__.py @@ -22,7 +22,7 @@ def prebuild_arch(self, arch): if exists(join(build_dir, '.patched')): print('pycrypto already patched, skipping') return - self.apply_patch('add_length.patch') + self.apply_patch('add_length.patch', arch.arch) shprint(sh.touch, join(build_dir, '.patched')) def get_recipe_env(self, arch):