mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 14:30:11 +01:00
Don't always require ndk_path
This commit is contained in:
parent
bc94f21463
commit
c4d14ce86a
@ -1018,9 +1018,10 @@ def prepare_source(vcs, app, build, build_dir, srclib_dir, extlib_dir, onserver=
|
|||||||
else:
|
else:
|
||||||
props += "sdk.dir=%s\n" % config['sdk_path']
|
props += "sdk.dir=%s\n" % config['sdk_path']
|
||||||
props += "sdk-location=%s\n" % ['sdk_path']
|
props += "sdk-location=%s\n" % ['sdk_path']
|
||||||
# Add ndk location...
|
if 'ndk_path' in config:
|
||||||
props += "ndk.dir=%s\n" % config['ndk_path']
|
# Add ndk location...
|
||||||
props += "ndk-location=%s\n" % config['ndk_path']
|
props += "ndk.dir=%s\n" % config['ndk_path']
|
||||||
|
props += "ndk-location=%s\n" % config['ndk_path']
|
||||||
# Add java.encoding if necessary...
|
# Add java.encoding if necessary...
|
||||||
if 'encoding' in build:
|
if 'encoding' in build:
|
||||||
props += "java.encoding=%s\n" % build['encoding']
|
props += "java.encoding=%s\n" % build['encoding']
|
||||||
|
Loading…
Reference in New Issue
Block a user