mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 14:30:11 +01:00
Properly default to NDK r10e
This commit is contained in:
parent
c8806a3235
commit
bad611ce5a
@ -202,7 +202,7 @@ def read_config(opts, config_file='config.py'):
|
|||||||
|
|
||||||
def get_ndk_path(version):
|
def get_ndk_path(version):
|
||||||
if version is None:
|
if version is None:
|
||||||
version = 'r10e' # latest
|
version = 'r10e' # falls back to latest
|
||||||
paths = config['ndk_paths']
|
paths = config['ndk_paths']
|
||||||
if version not in paths:
|
if version not in paths:
|
||||||
return ''
|
return ''
|
||||||
|
@ -103,7 +103,7 @@ flag_defaults = OrderedDict([
|
|||||||
('scandelete', []),
|
('scandelete', []),
|
||||||
('build', ''),
|
('build', ''),
|
||||||
('buildjni', []),
|
('buildjni', []),
|
||||||
('ndk', 'r9b'), # defaults to oldest
|
('ndk', 'r10e'), # defaults to latest
|
||||||
('preassemble', []),
|
('preassemble', []),
|
||||||
('antcommands', None),
|
('antcommands', None),
|
||||||
('novcheck', False),
|
('novcheck', False),
|
||||||
|
Loading…
Reference in New Issue
Block a user