1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-03 17:50:11 +02:00

Correct ndk r9 arcb selection

This commit is contained in:
Ciaran Gultnieks 2013-10-06 12:52:38 +01:00
parent 771fb587e3
commit b58e4356ac

View File

@ -8,9 +8,9 @@ script "setup-android-ndk" do
cwd "/tmp"
code "
if [ `uname -m` == 'x86_64' ] ; then
SUFFIX = '_64'
SUFFIX='_64'
else
SUFFIX = ''
SUFFIX=''
fi
tar jxvf /vagrant/cache/android-ndk-r9-linux-x86$SUFFIX.tar.bz2
mv android-ndk-r9 #{ndk_loc}