Commit 9fc0d2f1 authored by Constantin Rack's avatar Constantin Rack

Merge pull request #1331 from jemc/master

Problem: qt-android build script out of date
parents 153e0487 28946348
......@@ -16,8 +16,15 @@ android_build_opts
# Use a temporary build directory
cache="/tmp/android_build/${TOOLCHAIN_NAME}"
rm -rf "${cache}"
mkdir -p "${cache}"
# Check for environment variable to clear the prefix and do a clean build
if [[ $ANDROID_BUILD_CLEAN ]]; then
echo "Doing a clean build (removing previous build and depedencies)..."
rm -rf "${ANDROID_BUILD_PREFIX}"/*
fi
##
# Build libsodium from latest release tarball
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment