summaryrefslogtreecommitdiffstats
path: root/packaging/android/build.sh
diff options
context:
space:
mode:
authorGravatar Miika Turkia <miika.turkia@gmail.com>2016-04-12 17:56:25 +0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2016-04-14 10:59:56 -0700
commit454a62c835d9e9e183438eb491c54be2de4e4254 (patch)
treee4404c5ba33e7bd9e0e366ff4208ef7967a92259 /packaging/android/build.sh
parent9f9853fc4495cc70db260a0b8bca5aa13e00ce6c (diff)
downloadsubsurface-454a62c835d9e9e183438eb491c54be2de4e4254.tar.gz
Fix initial build of APK
Running subsurface/packaging/android/build.sh after deleting subsurface-mobile-build-arm directory fails for me due to missing ssrf-version.h file. Just ignore if it doesn't exist. Signed-off-by: Miika Turkia <miika.turkia@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging/android/build.sh')
-rw-r--r--packaging/android/build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/android/build.sh b/packaging/android/build.sh
index 17ccb03b3..0c1fa0f43 100644
--- a/packaging/android/build.sh
+++ b/packaging/android/build.sh
@@ -356,7 +356,7 @@ sed -i -e "s/-lcrypto//g" CMakeFiles/subsurface-mobile.dir/link.txt
# set up the version number
-rm ssrf-version.h
+rm -f ssrf-version.h
make version
SUBSURFACE_MOBILE_VERSION=$(grep MOBILE_VERSION_STRING ssrf-version.h | awk '{ print $3 }' | tr -d \" )
SUBSURFACE_MOBILE_VERSION="${SUBSURFACE_MOBILE_VERSION} ($(grep CANONICAL_VERSION_STRING ssrf-version.h | awk '{ print $3 }' | tr -d \"))"