mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-15 23:42:37 +03:00
Properly default to NDK r10e
This commit is contained in:
parent
c8806a3235
commit
bad611ce5a
2 changed files with 2 additions and 2 deletions
|
@ -202,7 +202,7 @@ def read_config(opts, config_file='config.py'):
|
|||
|
||||
def get_ndk_path(version):
|
||||
if version is None:
|
||||
version = 'r10e' # latest
|
||||
version = 'r10e' # falls back to latest
|
||||
paths = config['ndk_paths']
|
||||
if version not in paths:
|
||||
return ''
|
||||
|
|
|
@ -103,7 +103,7 @@ flag_defaults = OrderedDict([
|
|||
('scandelete', []),
|
||||
('build', ''),
|
||||
('buildjni', []),
|
||||
('ndk', 'r9b'), # defaults to oldest
|
||||
('ndk', 'r10e'), # defaults to latest
|
||||
('preassemble', []),
|
||||
('antcommands', None),
|
||||
('novcheck', False),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue