mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-04 22:40:29 +03:00
Re-add NDK r12b, now fixed.
This commit is contained in:
parent
bf153ec247
commit
059d216aff
9 changed files with 18 additions and 8 deletions
|
|
@ -2,6 +2,7 @@ sdk_path = "/home/vagrant/android-sdk"
|
|||
ndk_paths = {
|
||||
'r9b': "/home/vagrant/android-ndk/r9b",
|
||||
'r10e': "/home/vagrant/android-ndk/r10e",
|
||||
'r12b': "/home/vagrant/android-ndk/r12b",
|
||||
}
|
||||
java_paths = {
|
||||
'8': "/usr/lib/jvm/java-8-openjdk-i386",
|
||||
|
|
|
|||
|
|
@ -20,5 +20,10 @@ if [ ! -e $NDK_BASE/r10e ]; then
|
|||
mv android-ndk-r10e r10e
|
||||
fi
|
||||
|
||||
if [ ! -e $NDK_BASE/r12b ]; then
|
||||
unzip /vagrant/cache/android-ndk-r12b-linux-x86_64.zip > /dev/null
|
||||
mv android-ndk-r12b r12b
|
||||
fi
|
||||
|
||||
chmod -R a+rX $NDK_BASE/
|
||||
find $NDK_BASE/ -type f -executable -print0 | xargs -0 chmod a+x
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue