mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-06 15:30:28 +03:00
build: remove default NDK, closes #717
This commit is contained in:
parent
69fcd6a024
commit
9fc2a23713
5 changed files with 8 additions and 23 deletions
|
|
@ -326,13 +326,7 @@ class Build(dict):
|
|||
return 'ant'
|
||||
|
||||
def ndk_path(self):
|
||||
version = self.ndk
|
||||
if not version:
|
||||
version = 'r12b' # falls back to latest
|
||||
paths = fdroidserver.common.config['ndk_paths']
|
||||
if version not in paths:
|
||||
return ''
|
||||
return paths[version]
|
||||
return fdroidserver.common.config['ndk_paths'].get(self.ndk, '')
|
||||
|
||||
|
||||
flagtypes = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue