mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
Fix a buildjni regression
This commit is contained in:
parent
aa4fec9ca1
commit
63d7cbee9f
2 changed files with 2 additions and 2 deletions
|
|
@ -457,7 +457,7 @@ def build_local(app, thisbuild, vcs, build_dir, output_dir, srclib_dir, extlib_d
|
|||
(app['id'], thisbuild['version']), p.stdout)
|
||||
|
||||
# Build native stuff if required...
|
||||
if thisbuild.get('buildjni') not in (None, 'no'):
|
||||
if thisbuild.get('buildjni') not in (None, ['no']):
|
||||
logging.info("Building native libraries...")
|
||||
jni_components = thisbuild.get('buildjni')
|
||||
if jni_components == ['yes']:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue