more than just a number changed, retry that last commit
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28765 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
97d9c1eb37
commit
f51d6e6507
1 changed files with 4 additions and 1 deletions
|
@ -9,7 +9,7 @@ set -e
|
|||
# http://developer.android.com/sdk/index.html
|
||||
SDK_URL="http://dl.google.com/android/android-sdk_r07-linux_x86.tgz"
|
||||
# http://developer.android.com/sdk/ndk/index.html
|
||||
NDK_URL="http://dl.google.com/android/ndk/android-ndk-r5-linux-x86.zip"
|
||||
NDK_URL="http://dl.google.com/android/ndk/android-ndk-r5-linux-x86.tar.bz2"
|
||||
|
||||
prefix="${INSTALL_PREFIX:-$HOME}"
|
||||
dldir="${DOWNLOAD_DIR:-/tmp}"
|
||||
|
@ -34,6 +34,9 @@ download_and_extract() {
|
|||
tgz|tar.gz)
|
||||
(cd $prefix; tar -xf "$local_file")
|
||||
;;
|
||||
tar.bz2)
|
||||
(cd $prefix; tar -xjf "$local_file")
|
||||
;;
|
||||
*)
|
||||
echo "Couldn't figure out how to extract $local_file" ! 1>&2
|
||||
;;
|
||||
|
|
Loading…
Reference in a new issue