summaryrefslogtreecommitdiff
path: root/build/android/Makefile
diff options
context:
space:
mode:
authorest31 <MTest31@outlook.com>2015-08-21 22:43:40 +0200
committerest31 <MTest31@outlook.com>2015-08-21 22:47:04 +0200
commit6a1047d8c116f793890b63427d53f04ceca95d54 (patch)
treebb6137eb5abc99f7ae3a1b36ede3657f44004152 /build/android/Makefile
parentffe3f03bc514d5cd2a0a520ea6fb69594c7dff77 (diff)
downloadminetest-6a1047d8c116f793890b63427d53f04ceca95d54.tar.gz
minetest-6a1047d8c116f793890b63427d53f04ceca95d54.tar.bz2
minetest-6a1047d8c116f793890b63427d53f04ceca95d54.zip
Fix wrong android versionName
Before, android versionName was set to "...13", which made the f-droid build fail.
Diffstat (limited to 'build/android/Makefile')
-rw-r--r--build/android/Makefile2
1 files changed, 1 insertions, 1 deletions
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\""; \