Skip to content

check the calculated NDK platform path for validity #345

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 22, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions distribute.sh
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,14 @@ function run_prepare() {
export ARCH="armeabi"
#export ARCH="armeabi-v7a" # not tested yet.

info "Check NDK location"
if [ ! -d "$NDKPLATFORM" ]; then
error "Invalid NDK platform"
error "Looking in $NDKPLATFORM"
error "Using ANDROIDNDK=$ANDROIDNDK and ANDROIDAPI=$ANDROIDAPI"
exit -1
fi

info "Check mandatory tools"
# ensure that some tools are existing
for tool in tar bzip2 unzip make gcc g++; do
Expand Down