From 6a1047d8c116f793890b63427d53f04ceca95d54 Mon Sep 17 00:00:00 2001 From: est31 Date: Fri, 21 Aug 2015 22:43:40 +0200 Subject: [PATCH] Fix wrong android versionName Before, android versionName was set to "...13", which made the f-droid build fail. --- build/android/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/android/Makefile b/build/android/Makefile index 6d3791550..0a55c324c 100644 --- a/build/android/Makefile +++ b/build/android/Makefile @@ -867,7 +867,7 @@ $(ROOT)/jni/src/android_version.h : prep_srcdir fi manifest : - @BASE_VERSION="${VERS_MAJOR}.${VERS_MINOR}.${VERS_PATCH}"; \ + @BASE_VERSION="${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}"; \ if [ "${NDEBUG}x" != "x" ] ; then \ DBG=''; \ DBG_FLAG="android:debuggable=\"false\""; \