From ce717a77adbfe3dd9075dcb5f8353c9e11cafc5b Mon Sep 17 00:00:00 2001 From: Paul Brussee Date: Wed, 22 Jun 2016 00:15:14 +0200 Subject: [PATCH] fix autoconf libffi --- pythonforandroid/recipes/libffi/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pythonforandroid/recipes/libffi/__init__.py b/pythonforandroid/recipes/libffi/__init__.py index cbceed4a00..1f216b960c 100644 --- a/pythonforandroid/recipes/libffi/__init__.py +++ b/pythonforandroid/recipes/libffi/__init__.py @@ -40,7 +40,7 @@ def build_arch(self, arch): with current_directory(self.get_build_dir(arch.arch)): if not exists('configure'): shprint(sh.Command('./autogen.sh'), _env=env) - shprint(sh.Command('autoreconf -vif'), _env=env) + shprint(sh.Command('autoreconf'), '-vif', _env=env) shprint(sh.Command('./configure'), '--host=' + arch.toolchain_prefix, '--prefix=' + self.ctx.get_python_install_dir(), '--enable-shared', _env=env)