mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
'ndk_path' will always be in the config
This commit is contained in:
parent
c9daf93f69
commit
c77c9f06fc
1 changed files with 1 additions and 1 deletions
|
@ -1206,7 +1206,7 @@ def prepare_source(vcs, app, build, build_dir, srclib_dir, extlib_dir, onserver=
|
|||
else:
|
||||
props += "sdk.dir=%s\n" % config['sdk_path']
|
||||
props += "sdk-location=%s\n" % config['sdk_path']
|
||||
if 'ndk_path' in config:
|
||||
if config['ndk_path']:
|
||||
# Add ndk location
|
||||
props += "ndk.dir=%s\n" % config['ndk_path']
|
||||
props += "ndk-location=%s\n" % config['ndk_path']
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue