8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a1944f commit c977e1cCopy full SHA for c977e1c
pythonforandroid/recipes/xeddsa/__init__.py
@@ -24,7 +24,9 @@ def build_arch(self, arch):
24
hostpython, 'ref10/build.py',
25
_env=env
26
)
27
- shprint(sh.cp, '_crypto_sign.so', self.ctx.get_site_packages_dir())
+ # the library could be `_crypto_sign.cpython-37m-x86_64-linux-gnu.so`
28
+ # or simply `_crypto_sign.so` depending on the platform/distribution
29
+ sh.cp('-a', sh.glob('_crypto_sign*.so'), self.ctx.get_site_packages_dir())
30
self.install_python_package(arch)
31
32
0 commit comments