Skip to content

Commit b8d7995

Browse files
author
agilewalker
committed
Fix indent and extraneous logging
1 parent 4f7aee6 commit b8d7995

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

pythonforandroid/recipes/openssl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def build_arch(self, arch):
5959
if all(map(check_crypto, ('SSLeay', 'MD5_Transform', 'MD4_Init'))):
6060
break
6161
shprint(sh.make, 'clean', _env=env)
62-
62+
6363
self.install_libs(arch, 'libssl.a', 'libssl' + self.version + '.so',
6464
'libcrypto.a', 'libcrypto' + self.version + '.so')
6565

pythonforandroid/recipes/python3crystax/__init__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class Python3Recipe(TargetPythonRecipe):
6262
'/archive/master.tar.gz'.format(*version.split('.')))
6363
name = 'python3crystax'
6464

65-
depends = ['hostpython3crystax']
65+
depends = ['hostpython3crystax']
6666
conflicts = ['python2', 'python3']
6767

6868
from_crystax = True
@@ -203,8 +203,6 @@ def build_arch(self, arch):
203203
info('Copying openssl libs to ndk')
204204
arch_ndk_lib = join(openssl_ndk_dir, 'libs', arch.arch)
205205
ensure_dir(arch_ndk_lib)
206-
info(openssl_ndk_dir)
207-
info(arch_ndk_lib)
208206
shprint(sh.mv, join(openssl_build_dir, 'libcrypto{}.so'.format(ssl_recipe.version)), join(openssl_build_dir, 'libcrypto.so'))
209207
shprint(sh.mv, join(openssl_build_dir, 'libssl{}.so'.format(ssl_recipe.version)), join(openssl_build_dir, 'libssl.so'))
210208
libs = ['libcrypto.a', 'libcrypto.so', 'libssl.a', 'libssl.so']

0 commit comments

Comments
 (0)