Force a full rebuild on android in build scripts

* We still detect the precise same git commit in the android build and skip
  recompiles, which is useful for building android once on one platform and
  sharing it with other host platform builds.
This commit is contained in:
baldurk
2020-03-09 11:16:57 +00:00
parent 5cf93da317
commit 4b7c7eaaea
2 changed files with 4 additions and 0 deletions
@@ -77,6 +77,7 @@ if [ "$VERSION32" == "$GITTAG" ]; then
else
# Build the arm32 variant
rm -rf build-android-arm32
mkdir build-android-arm32
pushd build-android-arm32
@@ -98,6 +99,7 @@ if [ "$VERSION64" == "$GITTAG" ]; then
else
rm -rf build-android-arm64
mkdir build-android-arm64
pushd build-android-arm64
@@ -85,6 +85,7 @@ if [ "$VERSION32" == "$GITTAG" ]; then
else
# Build the arm32 variant
rm -rf build-android-arm32
mkdir -p build-android-arm32
pushd build-android-arm32
@@ -105,6 +106,7 @@ if [ "$VERSION64" == "$GITTAG" ]; then
else
rm -rf build-android-arm64
mkdir -p build-android-arm64
pushd build-android-arm64